Having trouble moving list to the left

This is a discussion on "Having trouble moving list to the left" within the Web Page Design section. This forum, and the thread "Having trouble moving list to the left are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Dec 9th, 2005, 15:13
csa csa is offline
Up'n'Coming Member
Join Date: Nov 2005
Posts: 67
Thanks: 0
Thanked 0 Times in 0 Posts
Having trouble moving list to the left

I'm using the following. I can't seem to get my list to align to the left, if I alter the padding it make the space between each list item closer or further apart but not to the edge of aktiv div.

Code: Select all
#aktiv{
padding-left: 0px;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
width: 420px;
}
#aktivlist li
{
display: inline;
list-style-type: none;
padding-left: 30;
margin-left: 0px;
}
Code: Select all
  <div id="aktiv">
<ul id="aktivlist">
<li><a href="#">AK495</a> | <a href="#">360°</a></li>
<li><a href="#">AK560</a> | <a href="#">360°</a></li>
<li><a href="#">AK565</a> | <a href="#">360°</a></li>
</ul>
</div>
Reply With Quote

  #2 (permalink)  
Old Dec 9th, 2005, 17:03
herkalees's Avatar
Highly Reputable Member
Join Date: Jul 2005
Location: Massachusetts, USA
Age: 87
Posts: 576
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Having trouble moving list to the left

Do this:
CSS:
Code: Select all
#aktiv {
font: 12px normal Arial, Helvetica, sans-serif;
width: 420px;
}
#aktivlist {
margin: 0;
padding: 0;
}
#aktivlist li {
display: inline;
list-style-type: none;
}
HTML:
Code: Select all
<div id="aktiv">
<ul id="aktivlist">
<li><a href="#">AK495</a> | <a href="#">360°</a></li>
<li><a href="#">AK560</a> | <a href="#">360°</a></li>
<li><a href="#">AK565</a> | <a href="#">360°</a></li>
</ul>
</div>
Reply With Quote
  #3 (permalink)  
Old Dec 12th, 2005, 08:56
csa csa is offline
Up'n'Coming Member
Join Date: Nov 2005
Posts: 67
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Having trouble moving list to the left

Thank you.
Reply With Quote
Reply

Tags
having, trouble, moving, list, left

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
2 Drop down list - auto select depending on choice from first list ciaranleeper JavaScript Forum 0 Mar 26th, 2008 10:38
[SOLVED] Having a bit of trouble getting my ordered list to be ordered. mcdanielnc89 Web Page Design 29 Nov 7th, 2007 18:32
Align list to the left csa Web Page Design 4 Aug 16th, 2006 08:22
Moving table to left slightly jj1234 Web Page Design 4 Mar 13th, 2006 15:50
List to align left csa Web Page Design 6 Feb 26th, 2006 07:19


All times are GMT. The time now is 09:12.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43