picthechic
Member
Posted 2 years ago #
Hi
if you see http://www.crossrangers.com/
on the right there is an events calendar which march 2010 is i want to change the background colour to black
below is the css i've changed to black but it still won't update on the site?
#wp-calendar caption {
margin: 10px 0 0 0;
width: auto;
text-align: center;
font-weight: bold;
background-color:#000000;
border: thin solid darkgray;
-moz-border-radius: 3px 3px 0 0;
ClaytonJames
Member
Posted 2 years ago #
Try this:
#wp-calendar td {
border: thin solid darkgray;
color:#FFFFFF;
background-color: #000000;
text-align: center;
}
ClaytonJames
Member
Posted 2 years ago #
I'm sorry. After re-reading I think you may only be after the heading. Changing the background from "inherit" to #000000 should work here.
#leftside h2, #leftside ul.linklist li h2, #leftside h3, #extras h2, #extras ul.linklist li h2, #extras h3, table#wp-calendar caption {
background-color:inherit;
color:#FFCC33;
font-size:1.3em;
font-weight:bold;
margin:0 0 6px;
text-align:center;
}
picthechic
Member
Posted 2 years ago #
Thanks
Afraid that didn't work - it changed all the numbers to white
I just want the title background colour to black :)
picthechic
Member
Posted 2 years ago #
oh just saw your new post - i'l give that a go :)
picthechic
Member
Posted 2 years ago #
Perfect :)
i had to edit it in my themes css, I was editing in the plugins one
Thank you so much
ClaytonJames
Member
Posted 2 years ago #