Announcement

Collapse
No announcement yet.

Hello-- help required. store background has changed colour!

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

    Hello-- help required. store background has changed colour!

    Hello,, sorry to be having to ask such numpty question on my first posting, but hopefully someone may be able to help. The background (frame?) to my store used to be white but for some reason it has now gone black. What exactly do I need to be looking for in order to change it back. If you need to see what I mean,,its www.thefittingscompany.co.uk.

    thanks in advance

    Jenny

    #2
    What version are you using Jenny?

    Don't know if this will work for you, but I think the background colour is set in:

    Design -> Themes -> Advanced Theme Configuration -> Color Scheme

    There should be several drop down boxes on the right hand side, and the very first one says 'Background:'.

    Well, it does for me on 8.5.1 HFUA anyway
    Need a barcode label or card printer? Look no further than OnlyZebra.

    Thinking about barcode scanning and whether it could improve your business' efficiency? We can offer a range of products from numerous manufacturers. OnlyAML, OnlyIntermec, OnlyLXE, OnlyOpticon & OnlyPsion or OnlyRugged, the one stop shop for all your needs.

    Comment


      #3
      The black is being caused by a bg image in your actinic stylesheet:

      Code:
      body {actinic.css (line 5)
      background-image:url(background1.gif);
      color:#666666;
      font-family:Arial,Helvetica,sans-serif;
      font-size:11px;
      margin:0;
      padding:0;
      }
      Removing the image leaves you with a grey background colour that is called for here:

      Code:
      body {style.css (line 1)
      background-color:#E2E0E0;
      margin:0;
      padding:0;
      }

      Army Gore-tex
      Winter Climbing Mitts
      webD's Blog: Website design, SEO and other ramblings…
      Twitter LinkedIN

      If you think a post is good, rate it!

      Find the answers in the Knowledge Base | Have you read the User Guides

      Comment


        #4
        Originally posted by webD View Post
        The black is being caused by a bg image in your actinic stylesheet:

        Code:
        body {actinic.css (line 5)
        background-image:url(background1.gif);
        color:#666666;
        font-family:Arial,Helvetica,sans-serif;
        font-size:11px;
        margin:0;
        padding:0;
        }
        Removing the image leaves you with a grey background colour that is called for here:

        Code:
        body {style.css (line 1)
        background-color:#E2E0E0;
        margin:0;
        padding:0;
        }
        Haha, knew there had to be a more complicated answer
        Need a barcode label or card printer? Look no further than OnlyZebra.

        Thinking about barcode scanning and whether it could improve your business' efficiency? We can offer a range of products from numerous manufacturers. OnlyAML, OnlyIntermec, OnlyLXE, OnlyOpticon & OnlyPsion or OnlyRugged, the one stop shop for all your needs.

        Comment

        Working...
        X