Help - Search - Members - Calendar
Full Version: <$BlogArchiveName$> how to un-indent??
Forums > Resource Center > Support Center > Blogger Support > Blogger Resolved Topics
akidd
I have the following in my sidebar on my blogger website My Webpage template:



How do I get rid of that indent so the archives are left justified? Pulling my hair out!
moorepocket
get rid of the <ul> </ul>.
mipadi
You can do it easily with stylesheets. The problem is that different browsers interpret and display the list items differently. Mozilla-based browsers display the indentation as padding, while Internet Explorer displays it as a margin (not sure what KHTML-based and other browser engines use). Therefore, to work in all browsers, you must set both style attributes. In your stylesheet, make up a style like this:
CODE
ul {
   padding-left:0px;
   margin-left:0px;
}

That will make the list have no indentation across browesrs (or it should, anyway).
moorepocket
for bullet list you don't have to put that in the css. Just don't use <ul>. It still works the same way.
mipadi
QUOTE(moorepocket @ Oct 3 2005, 9:06 PM)
for bullet list you don't have to put that in the css. Just don't use <ul>. It still works the same way.
*

You should, though. <li> tags should not fall outside of a <ul> or <ol> tag.
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.