centering menu text

This is a discussion on "centering menu text" within the Web Page Design section. This forum, and the thread "centering menu text are both part of the Design Your Website category.



 Subscribe in a reader

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

Notices


Reply
 
LinkBack Thread Tools
  #1  
Old Sep 30th, 2006, 11:36
Up'n'Coming Member
Join Date: Aug 2006
Location: California
Age: 20
Posts: 58
Thanks: 0
Thanked 0 Times in 0 Posts
centering menu text

I used ukgeoff's tutorial to make the menu system, and found it to be extremely helpful for menu systems, but I want to know how to center the text inside of the li values. Let me show you the code I am working with here, if your not familiar with his tutorial...

Code: Select all
div#nav ul
{
position: absolute;
list-style: none;
list-image: none;
margin: 0;
padding: 0;
background-color: #ffbbbb;
width: 80px;
height: 20px;
font-size: 10px;
}

div#nav li
{
position: relative;
}

div#nav ul.level1
{
height: 20px;
width: auto;
}

div#nav ul.level1 li
{
float: left;
margin: auto;
}

div#nav li a {
display: block;
padding: 3px 0 3px 3px;
text-decoration: none;
}

div#nav ul.level1 a
{
width: 77px;
}

div#nav li a:hover 
{
color: #000000;
background-color: #005fa4;
}
and... the html!

Code: Select all
<body>
    <div id='main'>
    
        <div id='head'>
        </div>
        
            <div id='nav'>
                <ul class='level1'>
                    <li><a href="#">item 1</a></li>
                    <li><a href="#">item 2</a></li>
                    <li><a href="#">item 3</a></li>
                    <li><a href="#">item 4</a></li>
                </ul>
            </div>
            
        <div id='subnav'>
        </div>
        
        <div id='content'>
        </div>
        
    </div>

</body>

I hope this isnt too confusing. Let me know if you dont understand what I am aiming for.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

  #2  
Old Sep 30th, 2006, 13:15
Up'n'Coming Member
Join Date: Jun 2006
Location: Florida
Age: 29
Posts: 52
Thanks: 0
Thanked 0 Times in 0 Posts
Re: centering menu text

I think this would work

Code: Select all
div#nav li { 
     position: relative;
     text-align: center;
  }
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old Sep 30th, 2006, 13:22
Most Reputable Member
Join Date: Apr 2006
Location: Cornwall, UK
Posts: 1,310
Thanks: 0
Thanked 0 Times in 0 Posts
Re: centering menu text

You could set the nominal width for your links in the <li> styling to whatever you want it to be and also add; text-align: center; to this style.

Sound rights. Try it and get back if the effect is not what you intended.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old Oct 1st, 2006, 01:17
Up'n'Coming Member
Join Date: Aug 2006
Location: California
Age: 20
Posts: 58
Thanks: 0
Thanked 0 Times in 0 Posts
Re: centering menu text

It worked great, thanks much!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
menu

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
Centering dropdown menu gribble Web Page Design 4 Aug 30th, 2007 16:10
Menu pushes text down Dapandyman Web Page Design 3 Nov 23rd, 2006 17:02
enter text in form menu Paula Web Page Design 1 Aug 15th, 2006 17:31
Building Text/Dropdown Menu w/ no background TruBluTex Flash & Multimedia Forum 8 Jan 15th, 2006 20:54


All times are GMT. The time now is 11:28.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization 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