<$BlogArchiveName$> how to un-indent??, help with blog template formatting |
<$BlogArchiveName$> how to un-indent??, help with blog template formatting |
Sep 10 2005, 04:39 PM
Post
#1
|
|
|
Newbie ![]() Group: Member Posts: 1 Joined: Sep 2005 Member No: 231,350 |
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! |
|
|
|
![]() |
| *mipadi* |
Oct 3 2005, 03:25 PM
Post
#2
|
|
Guest |
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). |
|
|
|
akidd <$BlogArchiveName$> how to un-indent?? Sep 10 2005, 04:39 PM
moorepocket get rid of the <ul> </ul>. Sep 14 2005, 07:52 PM
moorepocket for bullet list you don't have to put that in ... Oct 3 2005, 08:06 PM
mipadi QUOTE(moorepocket @ Oct 3 2005, 9:06 PM)for b... Oct 4 2005, 08:51 AM![]() ![]() |