CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6

Threaded View

  1. #1
    Join Date
    May 2009
    Posts
    4

    background image not showing

    hi im making a simple site nothing to fancy. im useing dreamweaver to create it, now the background image is viewable on dreamweaver on my computer. but when i uploaded the pictures and the site to my server (powweb) the background picture is not viewable at all tho all the other pictures on the site that i uploaded are.

    heres the site http://www.mramerican.us

    section from my css style sheet:

    Code:
    body {
    	
    	background-image: url("americanflagbackground.JPG");
    	background-position: top right;
    	background-repeat: no-repeat;
    	background-attachment: fixed;
    
    section from my html index page:
    
    {
    	background-image: url("americanflagbackground.JPG")
    }
    body {
    	background-image: url(americanflagbackground.JPG);
    Last edited by PeejAvery; May 23rd, 2009 at 03:43 PM. Reason: Added code tags.

Posting Permissions

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





Click Here to Expand Forum to Full Width

Featured