help with text-align: center

This is a discussion on "help with text-align: center" within the Web Page Design section. This forum, and the thread "help with text-align: center 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 Jun 7th, 2005, 02:34
New Member
Join Date: Jun 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
help with text-align: center

i'm having a horrible time getting CSS to center stuff.

i have a div with the text-align attribute set to center but it doesnt seem to do anything. all of the element inside of it still left justify. i'm about 10 seconds away from using center tags instead of a div.

am i missing something here?



Code: Select all
<div align="center" style="width: 100%; text-align: center">
  
  <div id="commerce-wrapper" style="width: 500px">
        <form name="form1" method="post">
        <%
	        MakeConnection()	
	        ' Draw Cart
	        Dim cartID 
	        cartID = GetPublicCartID(Session("userLogID"))
	        DrawCart cartID
	        DisConnect()
        %>

        <input type="hidden" name="cartID" value="<%=cartID%>">
        </form>

  </div> 
  
</div>
Reply With Quote

  #2 (permalink)  
Old Jun 9th, 2005, 18:05
Junior Member
Join Date: May 2005
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Here's what to do:

Code: Select all
<div id="content" style="text-align:center;">
   <div id="centered" style="text-align: left; margin: 0 auto;">
       stuff...
   </div>
</div>
take a look at this:
css tips on tip 7.
Reply With Quote
Reply

Tags
help, textalign, center

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
Vertical Text Align Biddlesby Web Page Design 1 Mar 13th, 2008 22:39
Align <li> in center? SOLVED Jack Franklin Web Page Design 4 Feb 18th, 2008 20:14
Text wont align shammy2007 Web Page Design 7 Jan 21st, 2008 08:30
Text-Align Marc Web Page Design 11 Jun 1st, 2007 07:22
center align text/background image Lchad Web Page Design 5 Dec 5th, 2006 10:40


All times are GMT. The time now is 18:53.


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