Results 1 to 2 of 2

Thread: Website issue (sizing)

  1. #1
    Join Date
    Feb 2012
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Website issue (sizing)

    Hello I am working on a website and have issues. Pretty obvious when you window back and forth on your browser you will see the background is fixed and the content chages position. Any help would be greatly apprectiated.

    http://thinkerton.artofwarcentral.com/index.html

    Many other questions as I am a noob. Though this is a good place to start. Thanks again
    Last edited by jscheuer1; 02-05-2012 at 09:04 AM. Reason: Format

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Without a major overhaul of the markup and/or styles, you could simply position the background consistent with the rest of the layout. In the thinkerton.artofwarcentral.com/html/style.css file make the highlighted change:

    Code:
    BODY
    {
    	background-image : url( "../assets/images/background.gif" );
    	background-color : rgb(27,27,27);
    	background-repeat : no-repeat;
    	background-attachment : fixed;
    	background-position : 0 0;
    	color : rgb(168,168,168);
    	font-family : Arial;
    	font-size : 12px
    }
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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
  •