liamC
Member
Registered: 28th Feb 04
User status: Offline
|
Wanting to make a list but dont want the list to be 'indented'. How do I do that? 
So instead of this: (Ignore the white underscores)
Title
___• link 1
___• link 2
___• link 3
I want this:
Title
• link 1
• link 2
• link 3
This is the code I have:
code: .column ul li{
list-style:none;
padding: 0px 0px 0px 15px;
margin:5px 0px;
background:url(images/arrow_br.jpg) 0px 3px no-repeat;}
[Edited on 06-04-2008 by liamC]
|
Doug
Member
Registered: 8th Oct 03
User status: Offline
|
code:
ul{
list-style-type: none;
padding: 0;
margin-left: 0;
font-weight: bold;
}
?
|
Bart
Member
Registered: 19th Aug 02
Location: Midsomer Norton, Bristol Avon
User status: Offline
|
have you tried adjusting the margin, and on a onother occasion the padding?
I dont know CSS particurly well, but it cant be that hard?
|
liamC
Member
Registered: 28th Feb 04
User status: Offline
|
quote: Originally posted by Doug
code:
ul{
list-style-type: none;
padding: 0;
margin-left: 0;
font-weight: bold;
}
?
indeed - cheers - think im sitting looking at code too long when i forget basic stuff like this
|
Doug
Member
Registered: 8th Oct 03
User status: Offline
|
No worries
|