Only a Quarter of the Image Shows?

Discussion in 'CSS' started by theblurr5495, Jul 19, 2011.

  1. #1
    My logo is only showing about a quarter of itself. Can someone help?

    I have the following CSS code:

    .start #header{background:url('http://jakeocallaghan.com/wp-content/uploads/2011/07/Jake1.png')no-repeat; position:absolute; left:100px; padding-bottom:500px; position: absolute; left: 10000000px; top:1000000px;}

    You can see it here
     
    theblurr5495, Jul 19, 2011 IP
  2. patrick0001

    patrick0001 Member

    Messages:
    340
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    28
    #2
    Try remove this part (part i highlighted), and put it to next line. The code should be something as below:

    <div class="full_width" id="header_area"></div>

    <div class="page">
    <div id="header">

    <img src="http://jakeocallaghan.com/wp-content/uploads/2011/07/Jake1.png"> <p id="logo"><a href="http://jakeocallaghan.com">Jake O'Callaghan Unboxed</a></p>
    </div>
    <div class="mybody">
    <img src="http://jakeocallaghan.com/wp-content/uploads/2011/06/rss.gif">
    <a href="http://feeds.feedburner.com/jake-ocallaghan">RSS</a>
    <img src="http://jakeocallaghan.com/wp-content/uploads/2011/06/email_icon.gif">
    <a href="http://feedburner.google.com/fb/a/mailverify?uri=Jake-OCallaghan&amp;loc=en_US">Email</a>
    <img src="http://jakeocallaghan.com/wp-content/uploads/2011/06/share_twitter.gif"> <a href="http://twitter.com/jakeocallaghan/">Twitter</a>
    </div>
    </div>
     
    patrick0001, Jul 19, 2011 IP
  3. Bapinder

    Bapinder Well-Known Member

    Messages:
    151
    Likes Received:
    7
    Best Answers:
    3
    Trophy Points:
    120
    #3
    Try this:
    .start #header{background:url('http://jakeocallaghan.com/wp-content/uploads/2011/07/Jake1.png')no-repeat; position:absolute; left:100px; padding-bottom:500px; position: absolute; left: 10000000px; top:1000000px; z-index: 1;}
    Code (markup):
    And I suggest you change the CSS, the top and left values are hilarious.
     
    Bapinder, Jul 19, 2011 IP