2 Questions: How to make forum opaque? How to center the forum buttons? 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

    2 Questions: How to make forum opaque? How to center the forum buttons?

    avatar
    dinobot
    New Member


    Posts : 16
    Reputation : 1
    Language : English

    Solved 2 Questions: How to make forum opaque? How to center the forum buttons?

    Post by dinobot Thu 19 Apr - 10:19

    Hello.

    1) What is the CSS code that allows me to set the level of opacity of the forum so I can view the background image of the forum?

    2) My buttons (Index, Calendar FAQ, Members, PMs, etc) at the top of the forum starts from the left to right. How would I make them at the center of the forum?

    An example of both can be viewed here:

    http://thirdlevel.forumotion.com/

    ----

    Thanks.


    Last edited by dinobot on Thu 19 Apr - 21:10; edited 1 time in total
    Sir Chivas™
    Sir Chivas™
    Helper
    Helper


    Male Posts : 6980
    Reputation : 457
    Language : EN, FR, ES
    Location : || CSS || HTML || Graphics Designs || Support ||

    Solved Re: 2 Questions: How to make forum opaque? How to center the forum buttons?

    Post by Sir Chivas™ Thu 19 Apr - 11:08

    Hi, Hello

    ACP >> Display >> Headers & Navigation >> Menu position: Wink
    avatar
    Guest
    Guest


    Solved Re: 2 Questions: How to make forum opaque? How to center the forum buttons?

    Post by Guest Thu 19 Apr - 15:49

    Sir Chivas gaved you response to the 2nd point.

    For first point, add to CSS Stylesheet:
    Code:
    #wrap{
    background-color: transparent;
    background-image: none;
    }
    or:
    Code:
    #wrap{
    -khtml-opacity: 0.2;
    -moz-opacity: 0.2;
    opacity: 0.2;
    filter: alpha(opacity=20);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    }
    avatar
    dinobot
    New Member


    Posts : 16
    Reputation : 1
    Language : English

    Solved Re: 2 Questions: How to make forum opaque? How to center the forum buttons?

    Post by dinobot Thu 19 Apr - 20:59

    Thank you for your responses. For

    Code:
    #wrap{
    -khtml-opacity: 0.2;
    -moz-opacity: 0.2;
    opacity: 0.2;
    filter: alpha(opacity=20);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    }

    Which number do I edit to change the opacity of the forum?
    avatar
    Guest
    Guest


    Solved Re: 2 Questions: How to make forum opaque? How to center the forum buttons?

    Post by Guest Thu 19 Apr - 21:02

    0.2 and 20. Be sure, 0.2 from -khtml-opacity, -moz-opacity & opacity means the same as 20 from filter & -ms-filter. Wink
    avatar
    dinobot
    New Member


    Posts : 16
    Reputation : 1
    Language : English

    Solved Re: 2 Questions: How to make forum opaque? How to center the forum buttons?

    Post by dinobot Thu 19 Apr - 21:09

    thank you!
    avatar
    Guest
    Guest


    Solved Re: 2 Questions: How to make forum opaque? How to center the forum buttons?

    Post by Guest Thu 19 Apr - 21:11

    You are welcome. Very Happy