Need Help With a CSS Problem

This is a discussion on "Need Help With a CSS Problem" within the Web Page Design section. This forum, and the thread "Need Help With a CSS Problem 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 May 25th, 2007, 21:25
New Member
Join Date: May 2007
Location: United States
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Need Help With a CSS Problem

I have been trying to get my newest project's navigation centered, and I just can't figure out how to do so without messing up the way it looks. If anyone can help me do so, please help!

URL of site: http://xozordesign.com/pr/

URL of site's CSS: http://xozordesign.com/pr/style.css

I am trying to get the navigation to align to the center with the same styling that it has now. I have tried several times, and I can't figure out what I am doing wrong. The link above is the navigation as I would like it to be displayed, but just centered instead of left aligned. Any help on how to do this would be greatly appreciated. Thanks!
Reply With Quote

  #2 (permalink)  
Old May 25th, 2007, 21:52
SuperMember

SuperMember
Join Date: Apr 2007
Location: Ireland
Age: 15
Posts: 332
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via AIM to Pádraig
Re: Need Help With a CSS Problem

Did you try this? It may not work, however.

CSS
Code: Select all
body {
     text-align: center;
}
Reply With Quote
  #3 (permalink)  
Old May 25th, 2007, 22:00
New Member
Join Date: May 2007
Location: United States
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need Help With a CSS Problem

Quote:
Originally Posted by Pádraig View Post
Did you try this? It may not work, however.

CSS
Code: Select all
body {
     text-align: center;
}
That doesn't do anything. I still can't come up with what I'm doing wrong here..
Reply With Quote
  #4 (permalink)  
Old May 26th, 2007, 07:12
Marc's Avatar
Moderator

SuperMember
Join Date: Apr 2007
Location: Scotland, UK
Age: 15
Posts: 1,649
Thanks: 0
Thanked 8 Times in 8 Posts
Send a message via MSN to Marc Send a message via Skype™ to Marc
Re: Need Help With a CSS Problem

Can you not just do this:
Code: Select all
<div id="nav" align="center">
    <ul>
          <li id="current"><a href="#"><span>Home</span></a></li>
          <li><a href="news.html"><span>News</span></a></li>
          <li><a href="#"><span>Services</span></a></li>
          <li><a href="#"><span>Tech Corner</span></a></li>
          <li><a href="#"><span>About</span></a></li>
    <li><a href="#"><span>Contact</span></a></li>
    </ul>
  </div>
Reply With Quote
  #5 (permalink)  
Old May 26th, 2007, 07:39
New Member
Join Date: May 2007
Location: United States
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need Help With a CSS Problem

Nope, it doesn't move at all.
Reply With Quote
  #6 (permalink)  
Old May 26th, 2007, 12:03
SuperMember

SuperMember
Join Date: Sep 2006
Location: Pink House
Posts: 3,946
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need Help With a CSS Problem

This will move it and you will have to adjust the margin to make it appear centered.

Code: Select all
#nav ul, #nav ul li {
    list-style: none;
    margin: 0px 0px 0px 150px;
    padding: 0;
 }
Reply With Quote
  #7 (permalink)  
Old May 29th, 2007, 09:36
Ryan Fait's Avatar
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Need Help With a CSS Problem

Try:

Code: Select all
#nav ul {
  width: 400px;
  margin: 0 auto;
}
#nav ul li {
  float: left;
}
#nav ul a {
  width: 100px;
  height: 24px;
  display: block;
  float: left;
}
Reply With Quote
Reply

Tags
css

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
First image problem and inline list problem konnor5092 Web Page Design 8 Dec 1st, 2007 09:08


All times are GMT. The time now is 07:51.


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