• azeemhaqwp

    (@azeemhaqwp)


    Hi there,

    I need to change the color of the Pink background on top logo to #800020. I have tried through additional CSS but it is not changing properly. I have used this:

    .logo_outer{
    width: 100%;
    height: 190px;
    border-right: 90px solid #800020;
    border-left: 90px solid #800020;
    border-bottom: 30px solid transparent;
    }

    It changes the logo background, but then in mobile version it doesn’t work properly. Also I want to remove the (X) from the navigation panel. Please help.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Theme Author VW THEMES

    (@vowelweb)

    Hello @azeemhaqwp,
    
    It may solve your problem, please add the below css in additional CSS.
    .logo_outer{
    width: 100%;
    height: 190px;
    border-right: 90px solid #800020;
    border-left: 90px solid #800020;
    border-bottom: 30px solid transparent;
    }
    @media screen and (max-width: 720px){
    #header{
    background:#800020;
    }
    .logo_outer {
    width: 100%;
    height: auto;
    border-right: 70px solid #800020;
    border-left: 70px solid #800020;
    border-bottom: 0px solid transparent;
    }
    }
    @media screen and (min-width: 768px) and (max-width: 1023px){
    .logo_outer_box, .logo {
    background:#800020;
    }
    .logo_outer{
    height:auto;
    }
    }
    .sidenav .closebtn{
    display:none !important;
    } Thank You.
Viewing 1 replies (of 1 total)
  • The topic ‘Pink background on Logo’ is closed to new replies.