Easiest way is to hide them with CSS. Add this to your style.css:
aside#archives{
display:none;
}
aside#meta{
display:none;
}
Thread Starter
Uval
(@uval)
Ok I figured it out…its in sidebar.php.
Thread Starter
Uval
(@uval)
Awesome! thank you.
I’m trying to comment out or remove the “-” symbol which I have on the page under the page title. I used a plugin to remove the date but this little “-” is still there.
Can you help with that too?
Regards.
This should do away with that:
.date-i {
display: none;
}
The best way to identify CSS code for things like this is by using Firebug…so you might check that out.
Thread Starter
Uval
(@uval)
It worked, thank you.
I’m new to this and even though I’m using firebug all I know is to comment out or remove/delete but I don’t know how to right a code.
Thanks!
This is a good CSS reference site — learning some basics will be helpful if you want to make changes in WP:
http://www.w3schools.com/css/
There are also MANY good tutorials and videos on the web re: CSS in WP specifically.
Thread Starter
Uval
(@uval)
Awesome!
Thank you very much.