1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

how to center footer text?

Discussion in 'CSS' started by pix582, Nov 16, 2009.

  1. #1
    heres the page, link

    how can i center the text?

    #footer {
    	height: 83px;
    	width: 851px;
    	margin-right: auto;
    	margin-left: auto;
    	background-image: url(images/footer_img.png);
    	background-repeat: no-repeat;
    }
    ul.footer li {
    	display: inline;
    	font-size: 12px;
    	font-weight: bold;
    	margin-right: 5px;
    }
    ul.footer a {
    	text-decoration: none;
    	color:#000000;
    	font-family: "Myriad Pro";
    }
    
    #footer h6 {
    	float:right;
    }
    Code (markup):
     
    pix582, Nov 16, 2009 IP
  2. Rivmedia

    Rivmedia Notable Member

    Messages:
    2,306
    Likes Received:
    70
    Best Answers:
    0
    Trophy Points:
    210
    #2
    Maybe :

    text-align:center;
    PHP:
     
    Rivmedia, Nov 16, 2009 IP
  3. pix582

    pix582 Active Member

    Messages:
    313
    Likes Received:
    14
    Best Answers:
    1
    Trophy Points:
    70
    #3
    nope tried that. :S
     
    pix582, Nov 16, 2009 IP
  4. earticles

    earticles Well-Known Member

    Messages:
    933
    Likes Received:
    35
    Best Answers:
    0
    Trophy Points:
    175
    #4
    in your page try replacing

    <ul class="footer">

    with

    <ul class="footer" style="text-align:center">
     
    earticles, Nov 16, 2009 IP
  5. pix582

    pix582 Active Member

    Messages:
    313
    Likes Received:
    14
    Best Answers:
    1
    Trophy Points:
    70
    #5
    works :D thanks
     
    pix582, Nov 16, 2009 IP