Recent Topics

1 Feb 20, 2008 19:08    

My b2evolution Version: Not Entered

Not being an expert in CSS.... - I am trying to change the color of the daily links within the calendar that lead to posts (the individual days on the calendar which turn bold when there are posts for that day) -In other words, I am only wanting the days to change color if there have been posts.

Thanks for any help!

2 Feb 20, 2008 22:46

Hi, in your CSS files you will find blog_elements.css
The Calendar styles are in there.
You have to edit .bCalendarLinkPost and also add .bCalendarLinkPost a
Example with very basic edits are below...

.bCalendarLinkPost {background:black;
	font-weight: bold;
}
.bCalendarLinkPost a{color:red;}

3 Feb 20, 2008 23:48

Or just add the new definitions to your skin's stylesheet. Typically it'll be style.css in v2.* but might be whatever in older versions. That way you won't lose your customization when you upgrade core files.


Form is loading...