okay…
you will need to know your way around wordpress templates and themes in order to make these things happen. don’t worry, it’s not hard, just don’t be afraid of it.
in order to remove the word “Pages” – you’ll want to open up “sidebar.php” and look for this line (or something similar)
<?php wp_list_pages(); ?>
replace this with
<?php wp_list_pages('title_li='); ?>
(This should automatically list any new pages you create, as well as removing that “Pages” title)
——
To remove the dot… you’ll need to open up the stylesheet (usually style.css or something similar, ending with “.css”)
you’ll need to find the element that styles your sidebar, often labeled as #sidebar and add the following line:
list-style: none;
——–
Try this and let us know if you get stuck.
Yup everything you said worked…your a genius.
Now I need to move the links to the middle of the left nav, space them evenly, and change the font of the links. Also, on the pages, the links appear at the bottom of the nav instead of the top. Can I change that?
Alright – I’m seeing a “0.” before the links now (only in Firefox, they’re not there in IE) – did you want that there or no? I’m assuming “no” – so you’ll have to add that list-style:none; to the part in the .css file that addresses “li” and “ul” and “li.children” – just put that line in anything related that falls within the sidebar section. ONLY the sidebar section of the stylesheet.
—–
while you’re there, make sure you add:
text-align:center; which will center them.
and padding-top:4px; which should space them out pretty well. you might have to change the “4” to another number and play with that to get it to work.
at this point, everything you’re trying to do involves CSS – so you might want to try finding some good CSS tutorials or help sites to get you through this part. these forums are specifically for wordpress help, and what you’re needing from this point on is CSS help.
good luck with everything! π
Hi,
I loaded a theme in my blog http://www.apuntesmexico.com but suddenly it got weird and now it is just not well aligned. Could anyone help me out?
thanks
DonVitto – check here: http://wordpress.org/search/IE+sidebar?forums=1 there are many threads with your topic that have discussed the problem and arrived at various solutions.
Hi, Thanks for the tip. I think I found the problem. The sidebar now is in a larger font size. Do you know how can I change the sideber font size?
Thanks again
DonVitto – you have to edit the section in the CSS file (the stylesheet) and change the font attributes in all parts that fall under the sidebar section
Hi,
Your tip about getting rid of the word “pages” was exactly what I was looking for! Thanks for that.
My question is, how can I make the list follow an order that I decide, and not just alphabetically? or is that possible?
Thanks in Advance
Furymaxx – check out these links about template tags for listing posts and for listing pages:
pages: http://codex.wordpress.org/Template_Tags/wp_list_pages
posts: http://codex.wordpress.org/Template_Tags/get_posts