Announcement

Collapse
No announcement yet.

wallpaper in Firefox

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    wallpaper in Firefox

    I have set my site up so that is has a fixed wallpaper background image. This works fine in Internet Explorer but the background scrolls in Firefox.

    Can anyone tell me how to overcome this in Firefox.

    Mark

    #2
    Can you post a URL to the site in question?


    Bikster
    SellerDeck Designs and Responsive Themes

    Comment


      #3
      www.priscus.co.uk

      Thanks
      Mark

      Comment


        #4
        You can do it in 2 ways:

        preferred is to remove the BACKGROUND image call from the BODY tag and in the HEAD area of the templates add in
        Code:
        <style type="text/css">
        body 
        {
        background-image: url('Background-b.jpg'); background-repeat: no-repeat; background-attachment: fixed
        }
        </style>


        Bikster
        SellerDeck Designs and Responsive Themes

        Comment


          #5
          and the 2nd which is nasty add into the <body> tag:

          Code:
          <body bgproperties="fixed" background="......etc...>
          The first stylesheet option is the best method. You will need to add into the various templates eg Act_Primary.html, Act_PrimaryCheckout.html and Act_BrochurePrimary.html and any other master templates you are using

          HTH


          Bikster
          SellerDeck Designs and Responsive Themes

          Comment


            #6
            Your preferred method worked perfectly.

            Many thanks
            Mark

            Comment


              #7
              Glad it worked.

              May be worth putting the code into an external stylesheet that way you can always change the background image by just changing the stylesheet and not reloading everypage


              Bikster
              SellerDeck Designs and Responsive Themes

              Comment

              Working...
              X