Loading...
 
 Error
  • Contact the site administrator. The index needs rebuilding.
Development

Development


Re: How to change the background color for upcoming_events module?

posts: 2428 Czech Republic

Hi,

each module has special class named by the module name, e.g.
box-since_last_visit_new.

So I think this could work for you:

Copy to clipboard
.box-upcoming_events * { /* put the tag you want to override instead of the star here */ background: #A8CCE2; /* overrides bg image too */ color: 666; /* you can also override color of the text */ }


To make sure it overrides always you can put an !important pointer there:

Copy to clipboard
.box-upcoming_events * { background: #A8CCE2 !important; }


luci

There are no comments at this time.