Results 1 to 3 of 3

Thread: text-align CENTER not responding

  1. #1
    Join Date
    Oct 2009
    Location
    USA
    Posts
    40
    Thanks
    15
    Thanked 0 Times in 0 Posts

    Question text-align CENTER not responding

    Find issue @ www.yogamoves.net/time_out.html

    I am trying to center a few quotes, here is the code I am using:
    Code:
    .smallquote {
    	text-align: center;
    	font-weight: bold;
    }
    .smallquote_sub {
    	text-align: center;
    	font-weight: lighter;
    	font-style: italic;
    }
    When I am viewing the Dreamweaver preview it works, but when I preview on Firefox the centering doesn't show up, anybody know the reason? I've had this problem a few times...

    I am also trying to use padding between paragraphs, I used this code:
    Code:
    <p class="sub_title" style="margin-top:-10px" "padding-bottom:20px">~ Both CDs ~</p>
    Screen shot of issue, color coded:
    Last edited by jerdy; 07-23-2010 at 12:51 AM.

  2. #2
    Join Date
    Apr 2008
    Location
    So.Cal
    Posts
    3,643
    Thanks
    63
    Thanked 516 Times in 502 Posts
    Blog Entries
    5

    Default

    what element are you applying the class (smallquote / smallquote_sub) to?

    About the paragraph, your negative top margin is effectively canceling out half of your bottom padding.

  3. #3
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    A span element can not be centered like that. Either you can change it to <p> elements or you can make the span element display:block like this
    Code:
    .smallquote {
            display: block;
    	text-align: center;
    	font-weight: bold;
    }
    .smallquote_sub {
            display: block;
    	text-align: center;
    	font-weight: lighter;
    	font-style: italic;
    }
    Regarding the last part try to change it to
    Code:
    <p class="sub_title" style="margin-top:-10px; padding-bottom:20px;">~ Both CDs ~</p>
    removing two quotes in the middle and adding some semicolons

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •