Is This Possible Without Changing Theme? 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.
3 posters

    Is This Possible Without Changing Theme?

    kvance
    kvance
    Forumember


    Male Posts : 142
    Reputation : 2
    Language : English
    Location : Ohio

    In progress Is This Possible Without Changing Theme?

    Post by kvance Tue 14 Oct - 2:48

    Is it possible to change the color of the tables and widgets on a forum via something under the display or does that have to be done via another completely different theme?

    An example of what I mean would be this I have a contact staff box on my forum. The part that has contact staff has a reg "highlight" behind it. Would it be possible to turn things like that another color?

    In short can I take something like this

    Is This Possible Without Changing Theme? 5b336e95acdf632a540e564ba3437a78

    Then make the red another color. Or is that only done via another template? I'm asking as my forum wants to do something for breast cancer awareness and I was curious if it was possible to make that parts of the forum another color. Or if I have to make a whole new theme and such?

    Forum URL: http://xwlleague.forumotion.com/
    Ange Tuteur
    Ange Tuteur
    Forumaster


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

    In progress Re: Is This Possible Without Changing Theme?

    Post by Ange Tuteur Tue 14 Oct - 4:05

    Hello kvance,

    You can modify the image in pics management :
    Administration Panel > Display > Pics management > Advanced

    or change it by CSS :
    Display > Colors > CSS stylesheet

    Example rule :
    Code:
    td.cat, td.catBottom, td.catHead, td.catLeft, td.catRight, td.catSides {
      background:#F06;
      box-shadow:0 8px 6px rgba(255,255,255, 0.2) inset, 0 -8px 6px rgba(0,0,0, 0.2) inset;
    }
    kvance
    kvance
    Forumember


    Male Posts : 142
    Reputation : 2
    Language : English
    Location : Ohio

    In progress Re: Is This Possible Without Changing Theme?

    Post by kvance Tue 14 Oct - 4:31

    Hmm I'll try having a look as ideally what I wanna do is turn the whole forum pink but I wasn't sure how I'd go about changing the color of things like this

    Is This Possible Without Changing Theme? 0087cb7a2c635538d02844d91d8d0e03

    Or any area with that and if it was how to do so. If it's possible via css editing I'll have to look into that. I assume I'd have to change it for every area I'd want it changed for. Or would there be a way to have the parts linked in the image changed for the whole site easily?
    Ange Tuteur
    Ange Tuteur
    Forumaster


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

    In progress Re: Is This Possible Without Changing Theme?

    Post by Ange Tuteur Tue 14 Oct - 7:13

    Changing it by CSS should be simple. Go to Administration Panel > Display > Colors > CSS stylesheet

    All you need to do is paste this somewhere in the sheet :
    Code:
    td.cat, td.catBottom, td.catHead, td.catLeft, td.catRight, td.catSides, th {
      background:#F06;
      box-shadow:0 8px 6px rgba(255,255,255, 0.2) inset, 0 -8px 6px rgba(0,0,0, 0.2) inset;
    }
    ( To make it simple, add it to the very top )

    #F06 is the color of the header. ( pink ) You can use this to choose colors : http://colorpicker.com/
    kvance
    kvance
    Forumember


    Male Posts : 142
    Reputation : 2
    Language : English
    Location : Ohio

    In progress Re: Is This Possible Without Changing Theme?

    Post by kvance Tue 14 Oct - 17:13

    Okay so I tried it out and it only worked for certain parts of the forum.

    All the widgets, the who's online one and the chatbox, it didn't color this part

    Is This Possible Without Changing Theme? Cd650af2600e74ceb962cd448d3d200d

    Nor did it color any other headers like that when I would go to another part of my forum.

    Is there a way to color that part too where every part, no matter what part of the forum I go on, would be pink?

    Better yet is there a way to just change the whole forum colors of everything. The buttons at the top, the part I linked, the part you showed to pink? Like is there a code I could use to change the whole forum for just that set time. Or would I have to do several individual codes for like the buttons at the the top "hoome, search, etc etc" and then everything else
    kvance
    kvance
    Forumember


    Male Posts : 142
    Reputation : 2
    Language : English
    Location : Ohio

    In progress Re: Is This Possible Without Changing Theme?

    Post by kvance Fri 17 Oct - 3:23

    Giving this a small bump to reask something

    Is there a way to just change the whole forum colors of everything. The buttons at the top, the part I linked, the part you showed to pink? Like is there a code I could use to change the whole forum for just that set time. Or would I have to do several individual codes for like the buttons at the the top "home, search, etc etc" and then everything else?
    Ange Tuteur
    Ange Tuteur
    Forumaster


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

    In progress Re: Is This Possible Without Changing Theme?

    Post by Ange Tuteur Fri 17 Oct - 4:45

    You can manage your colors here :
    Administration Panel > Display > Colors

    For your navbar, you can change those images here :
    Administration Panel > Display > Pics management > Advanced > General / Explore
    kvance
    kvance
    Forumember


    Male Posts : 142
    Reputation : 2
    Language : English
    Location : Ohio

    In progress Re: Is This Possible Without Changing Theme?

    Post by kvance Sat 18 Oct - 21:03

    So there's no way to change the colors of these headers and such? As I've looked in my colors management and all I've seen is text color. Not how to change the color of things like this. Dunno if these are tables or something

    Is This Possible Without Changing Theme? Ab1d36d389c329db608fe015f6a44536

    Or this.

    Is This Possible Without Changing Theme? E7119eaf97738cf194d9889bfdf0f553

    If it is possible is it a simple code to understand. If it's too much work to do then I can just close this topic and not worry about it.
    SLGray
    SLGray
    Administrator
    Administrator


    Male Posts : 51553
    Reputation : 3519
    Language : English
    Location : United States

    In progress Re: Is This Possible Without Changing Theme?

    Post by SLGray Sat 18 Oct - 21:57

    This is the CSS code that you have:
    Code:
    th {
        background-image: url('http://2img.net/s/t/16/74/89/i_back_title.png');
    }
    Is This Possible Without Changing Theme? I_back_title



    Is This Possible Without Changing Theme? Slgray10

    When your topic has been solved, ensure you mark the topic solved.
    Never post your email in public.
    Ange Tuteur
    Ange Tuteur
    Forumaster


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

    In progress Re: Is This Possible Without Changing Theme?

    Post by Ange Tuteur Sun 19 Oct - 1:54

    You can change it here too :
    Administration Panel > Display > Pics management > Advanced > General / Explore

    It should be one or more of these :
    Is This Possible Without Changing Theme? Captu186