Removing date stamp
-
I would like to be able to remove the Date and month stamp on the posts. Can that be done?
I also would like to know if there is a way to put a color different than the background one under the sidebar widgets.
Thanks!
The blog I need help with is: (visible only to logged in users)
-
To get rid of the date and the circle
.post .date {display:none; }For a sidebar background or background color, put it in #sidebar.
#sidebar {background: none repeat scroll 0 0 transparent; }`
Do note that with the sidebar, an image is only going to show down as far as the bottom of the last widget. To have it continue down to the bottom of the web page, no matter the length it would be best to incorporate it into #content.
-
I had modified the sidebar by typing:
#sidebar,#sidebar a {
font-family:arial;
color:#000000;
}What I did was typing what you game me like so:
#sidebar,#sidebar a {
#sidebar {background:#ffffff repeat scroll 0 0 transparent; }`
font-family:arial;
color:#000000;
}But the white background did not appear on the sidebar. Is there anything wrong with the code I had? Or maybe the way I inputed the code you gave me?
Thanks!
-
You cannot put one declaration inside another. The curly braces should be kept seperate like so:
#sidebar, #sidebar a {font-family:arial; color:#000000;} #sidebar {background:none repeat scroll 0 0 #fff;} -
- The topic ‘Removing date stamp’ is closed to new replies.