Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #256693

    Hallo,

    ich wollte den Header mit folgendem CSS Code abändern:

    #header {
    background-image: linear-gradient(rgba(255,226,168,.5) 70%,white 100%) !important;
    border-style: solid;
    border-width:1px;
    border-color: #ADADAD !important; 
    border-radius: 11px;
    box-shadow: 5px 5px 5px #cccccc;
    }

    Alles funktioniert…bis auf: background-image: linear-gradient(rgba(255,226,168,.5) 70%,white 100%) !important;
    Die Farbe bleibt weiß.

    Gleicher Code für den Footer funktioniert.

    Wie bekomme ich den Farbverlauf für den Header hin?

    Liebe Grüße,
    Marco

    #257239

    Hey crevlon!

    Please add following code to Quick CSS as well

    #header_main {
    background-image: linear-gradient(rgba(255,226,168,.5) 70%,white 100%) !important; }

    If that does not work, please post the link to your website

    Regards,
    Yigit

    #257331

    Ja es funktioniert :).

    Ich habe nun:

    #header_main {
    background-image: linear-gradient(rgba(255,226,168,.5) 70%,white 100%) !important;
    border-style: solid;
    border-width:1px;
    border-color: #ADADAD !important; 
    border-bottom-left-radius: 11px;
    border-bottom-right-radius: 11px;
    box-shadow: 5px 5px 5px #cccccc;
    }

    Ich habe unten links und unten rechts einen border-radius rein gemacht. Ist es möglich die nun frei gewordene Fläche (Farbe weiß) transparent zu machen?

    Liebe Grüße,
    Marco

    #258138

    Hey!

    Du kannst probieren die Hintergrundfarbe mit:

    
    #header_main {
    background-color: transparent !important;
    }
    

    auf transparent zu setzen.

    Best regards,
    Peter

    #258166

    Hi Peter,

    nein das klappt leider nicht.

    #258884

    Hi!

    Do you mind if we take a look at the website? Please try this:

    .header_color .header_bg {
    background-color: transparent !important;
    }

    Best regards,
    Ismael

    #259076

    With this code the hole header will be transparent. I only want to get the one small corner on the bottom left and right (left is enough…the right one cant be see because of the shadow) transparent.

    Here is the link: klick

    Scroll down to the half of the first big picture. Then on the bottom left of the header you can see what I mean.

    #259209

    Hi!

    The background is coming from this selector:

    #main, .html_stretched #wrap_all {
    background-color: #ffffff;
    }

    With the customization that you created, I guess you need to move the slider upwards.

    .html_header_top.html_header_sticky #main {
    padding-top: 80px;
    }

    Then set the linear-gradient to 100% opacity:

    #header_main {
    background-image: linear-gradient(rgba(113,148,48, 1) 70%,white 100%) !important;
    }

    Best regards,
    Ismael

    #259901

    No, thats just switches the green to a darker green. But it isnt so important. I will let it without any transparency. But thank you :)

Viewing 9 posts - 1 through 9 (of 9 total)
  • The topic ‘Header CSS Code’ is closed to new replies.