Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

Private: Home Forums HTML Templates Mixed Modern and Professional HTML Template Transparent Header with semi transparent background Reply To: Transparent Header with semi transparent background

#2853
Robert Kavgić
Participant

Hello,

Open stye.css and go about line 1077 where it’s written:

#header-wrapper.header-transparent.solid-color {
    background-color: #223d8e;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

Replace the background-color value #223d8e with rgba(34, 61, 142, 0.8) so the upper code looks like:

#header-wrapper.header-transparent.solid-color {
    background-color: rgba(34, 61, 142, 0.8);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

Modify the alpha value (0.8) to suit your needs.
Value 0.8 can be interpreted as 80% visibility, 20% transparency.

Robert