Recent Topic Widget Background Color 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

    Recent Topic Widget Background Color

    avatar
    Darksphere92
    Forumember


    Posts : 101
    Reputation : 1
    Language : English

    Solved Recent Topic Widget Background Color

    Post by Darksphere92 December 8th 2013, 4:47 am

    Is it possible to change the Recent Topic's Background Color? Right now it's currently grey and i want to change it to white.
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Recent Topic Widget Background Color

    Post by Ange Tuteur December 8th 2013, 4:57 am

    Hello Darksphere92,

    If you want to change the color of all widgets use this CSS :
    AP > Display > Colors > CSS stylesheet
    Code:
    .module { background:#fff; }
    For just the latest topics widget :
    AP > Modules > Javascript codes management > create a new script
    Name : What you wish
    Placement : In all the pages
    Paste the code below and save.
    Code:
    jQuery(function(){ jQuery('.module:contains(Latest topics)').css('background', '#fff'); });
    avatar
    Darksphere92
    Forumember


    Posts : 101
    Reputation : 1
    Language : English

    Solved Re: Recent Topic Widget Background Color

    Post by Darksphere92 December 8th 2013, 5:02 am

    SethC1995 wrote:Hello Darksphere92,

    If you want to change the color of all widgets use this CSS :
    AP > Display > Colors > CSS stylesheet
    Code:
    .module { background:#fff; }
    For just the latest topics widget :
    AP > Modules > Javascript codes management > create a new script
    Name : What you wish
    Placement : In all the pages
    Paste the code below and save.
    Code:
    jQuery(function(){ jQuery('.module:contains(Latest topics)').css('background', '#fff'); });
    solved Thanks.
    Ange Tuteur
    Ange Tuteur
    Forumaster


    Male Posts : 13207
    Reputation : 3000
    Language : English & 日本語
    Location : Pennsylvania

    Solved Re: Recent Topic Widget Background Color

    Post by Ange Tuteur December 8th 2013, 5:05 am

    You're welcome

    Topic solved and archived