How do I change the widget colour? Hitskin_logo Hitskin.com

This is a Hitskin.com skin preview
Install the skinReturn to the skin page

The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.
2 posters

    How do I change the widget colour?

    FrostWaterfall
    FrostWaterfall
    New Member


    Posts : 1
    Reputation : 1
    Language : English

    In progress How do I change the widget colour?

    Post by FrostWaterfall March 30th 2017, 23:18

    Hello. Currently, my widgets look like this:

    How do I change the widget colour? Fd42a404d4

    I want to change the gray of the background to something else but I can't seem to make it work. Site is phpBB2.
    Ape
    Ape
    Administrator
    Administrator


    Male Posts : 19212
    Reputation : 1998
    Language : fluent in dork / mumbojumbo & English haha

    In progress Re: How do I change the widget colour?

    Post by Ape March 30th 2017, 23:35

    Hello in your CSS files you have a background image
    See Code found:
    Code:
    td.cat, td.catBottom, td.catHead, td.catLeft, td.catRight, td.catSides {
        background-color: #09349f;
        background-image: url(https://2img.net/i/fa/subsilver/back_catg.gif);
        border: #799aec;
        border-style: solid;
        height: 28px;
    }

    if you look it has a background image
    background-image: url(https://2img.net/i/fa/subsilver/back_catg.gif);

    The widgets code is:
    td.catLeft

    What you could do is tell that part of the code to stop working just for that Widgets by
    Adding this to the top or bottom of your CSS files
    Code:
    td.catLeft{
    background-image: none !important;
    background-color: #09349f;
    }

    To change the color of the background just change this color #09349f code

    Now if you want the Widgets to look like the other forum bar then add this code in the old code
    Code:
    background-image: url(https://2img.net/i/fa/subsilver/back_title.gif);



    How do I change the widget colour? Left1212How do I change the widget colour? Center11How do I change the widget colour? Right112
    How do I change the widget colour? Ape_b110
    How do I change the widget colour? Ape1010