$20 to the person who can help me with a CSS issue

3 replies
Hello people!

I have a really irritating problem with one of my websites...for some reason the main area of the page sits to the left and not centrally. I've gone through the CSS file line for line and still cant work out what's doing it.
If any of you guys who are more experienced in this kinda thing wanna take a look I've got $20 for the first person who can fix it!

You can find the site here
#$20 #css #issue #person
  • Profile picture of the author Martin Avis
    Could it have something to do with your having an html tag inside your CSS file?

    <div id="main_layout">

    Martin
    Signature
    Martin Avis publishes Kickstart Newsletter - Subscribe free at http://kickstartnewsletter.com
    {{ DiscussionBoard.errors[744595].message }}
  • Profile picture of the author Ross Dalangin
    Make the width inside the container equal to the width of your page. Since you are using 776 then use it in the container also.

    From
    Code:
    #container {
    
    	margin: 0px auto;
    
    	text-align: left;
    
    	width: 1000px;
    
    }
    Change it to
    Code:
    #container {
    
    	margin: 0px auto;
    
    	text-align: left;
    
    	width: 776px;
    
    }
    {{ DiscussionBoard.errors[744624].message }}
  • Profile picture of the author Tom Lazenby
    Hey Ross! You are THE MAN! Let me know your paypal address and I'll get the money to you. Many MANY THANKS!
    Signature

    YES IT IS STILL POSSIBLE
    !
    Not Only That, It's Perfectly Legal & Whitehat!
    CLICK HERE
    FOR DETAILS
    {{ DiscussionBoard.errors[744699].message }}

Trending Topics