Styling Overlib

Styling Overlib

by Jody Baty -
Number of replies: 2
How can I go about changing the text and link color in the popup generated by overlib in the minicalendar? I've attached a screenshot of the problem. The text is too light on the white background.
Attachment calendar.jpg
Average of ratings: -
In reply to Jody Baty

Re: Styling Overlib

by Jeffery Watkins -
Hi Jody,

In you theme folder, look for styles_color.css and change these tags:

.cal_popup_fg {

}

.cal_popup_bg {


}

Either add a color: tag to change the text, or add/change the background-color: tag.... or both.

Jeff

P.S.

The

#calendar .maincalendar .filters table,
#calendar .sidecalendar .filters table,
.block_calendar_month .filters table {
background-color: #ffffff;
}

tag will change the white background on the bottom of the calendar.
Average of ratings: Useful (1)
In reply to Jody Baty

Re: Styling Overlib

by Mauno Korpelainen -

You may also change color of popup caption separately to black (background white) by

.cal_popup_caption {
  background-color: #ffffff;
  color: #000000;
}

Average of ratings: Useful (1)