Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7959643
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T04:36:22+00:00 2026-06-04T04:36:22+00:00

Well, I have a website and the front page has this image repeated all

  • 0

Well, I have a website and the front page has this image repeated all the way down. While on Chrome, is only repeats once, just like I want it to.

body {
    color: #999999;
    background-color: #490000;
    background:url('http://pigymunk.co.uk/bgasdf2.png') fixed, url('http://pigymunk.co.uk/bgasdf.png') fixed;
    background-repeat: no-repeat, repeat;
    background-position: left top, left top;
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-04T04:36:23+00:00Added an answer on June 4, 2026 at 4:36 am

    You have

    background-repeat: no-repeat, repeat;
    

    You can only specify either no-repeat or repeat – not both, e.g.

    background-repeat: no-repeat;
    

    Chrome supports CSS3 syntax allowing both but many browsers such as IE consider this invalid as it doesn’t support it. (Remember CSS2 is standard, CSS3 is only partially supported)

    Updated:
    To create a layerd background you need to use layers surprise surprise :).

    body {
        color: #999999;
        background-color: #490000;
        background: url('http://pigymunk.co.uk/bgasdf.png');
        background-repeat: repeat;
        background-position: left top;
    }
    
    #logo {
        height: 200px;
        width: 220px;
        background: url('http://pigymunk.co.uk/bgasdf2.png') no-repeat top left;
        position: absolute;
        top: 0px; left: 0px;
    }
    

    HTML:

    <body>
    <div id="logo"></div>
    ...
    

    or better yet, don’t use a background image for your logo as it won’t appear when background images are turned off, e.g. for printing. Crop the image to the correct size for the logo and put it in the html

    <body>
    <div id="logo"><img src="http://pigymunk.co.uk/bgasdf2.png" alt="Piggymunk logo" /></div>
    
    ...
    

    jsfiddle example: http://jsfiddle.net/ytL2w/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I finally have jQuery AJAX down pretty well and have my website all created,
I have a website with 3 pages, while each page has articles that are
I have a website which fetches information from RSS feeds periodically (well, currently manually,
Well I have this code in my Managed C++/Cli in Visual Studio 2008, I
Well this JSON I have doesn't work on PHP Json_decode, it returns NULL, and
I have a website with articles. When a user has authenticated an application and
I have a website (the basic gist of which is described in this question
Well I have a videos website and a few of its tables are: tags
Well i have a gridview where i have defined the columns on my own
Well i have a transparent div or the background is set to transparent :)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.