When you get the wordpress blog the archives on the sidebar are in this format. Archive 1 Archive 2 Archive 3 etc.. How Do I get it in this format.. Archive 1, Archive 2, Archive 3 I am talking about the sidebar on the main page thanks!
Basically, you'll have to edit the way the archive function outputs, but I have no idea where would that be listed.
yea i was thinking the same thing the current the template I am using has 2 files named archives.. yet I have no idea what to do ..
hm, you will have to find out how to style it but it think it outputs in this format: <ul id="something"> <li>archive 1</li> <li>archive 2</li> <li>archive 3</li> </ul> Code (markup): so find out what the id or class of ul is and do this: #thatidname li{display:inline;} Code (markup): or in the case that it is a class not an id .thatclassname li{display:inline;} Code (markup): note that this will only work if it outputs in a list like above.
I understand what you mean but the issue is I have no clue which file it is in Ive been looking through them and cant find them..
From what I can tell, you have to edit the sidebar.php file found in your theme folder. What you are looking for is a function like "wp_get_archives", it does not look like a list in the template file. Find that and then change the id or class of the ul tags that surround the function. Then you style the list like it was explained in this thread.