Link to home
Create AccountLog in
Avatar of isnoend2001
isnoend2001Flag for United States of America

asked on

Move bullet closer to list

I have a division (relative)
With absolute position divisions
When i try to make a bullet ted list the bullet is way over to the left how can i correct this?
Bottom of screen bullet is way over by the left red border
http://roofgenius.com/test.asp
ASKER CERTIFIED SOLUTION
Avatar of Kyle Hamilton
Kyle Hamilton
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of isnoend2001

ASKER

Thanks i will try that easier than what I got to work: I put it in a division
.listoutline{
position: relative;
width: 400px;
height: 200px;
border: 1px solid gray ;
 }
kozaiwaniec
Your method moves the whole list to the far left
I don't see it on the far left.

Also, if you want the list to not overlap the footer, you can add overflow:hidden, like this:

.listoutline {
position: relative;
width: 400px;
height: 110px;
overflow: hidden;
}
thanks