Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #581930

    hi. can you please help me to get a white background for this colorsection with custom css class?

    white-bg {
    background:#ffffff!important;
    }
    #581933

    a frequently made fault on inserting a css class is that the point infront of the class is forgotten.
    on that field where you put in the class – there it has to be written without that dot. But on quick css you have to make it.

    .white-bg {
    background:#ffffff!important;
    }
    #581934

    by the way – each color-section has on that edit field the possibility to determin a background-image or background-color (look to the tabs on edit case)
    “Section Background Tab”

    • This reply was modified 8 years, 9 months ago by Guenni007.
    #581949

    Thank you. Can you help me with one other thing.

    How can i delte this line and get this button green(#649600) on mouse over?

    #581950

    @background color white!

    I do not have added it on quick css :) it is int eh style.css :) the color section below has a custom class bg-grey – this works perfect.

    #582219

    Any idea how i can get this effect?

    #582280

    Hi!

    Please add following code to Quick CSS

    #scroll-top-link {
        background: #649600;
        color: white;
    }
    #socket { border: none !important; }

    Best regards,
    Yigit

    #582292

    Thanks. How can i get it wite/transparent and only ON MOUSEOVER green ;)

    #582293

    And to the first posting:

    can you please help me to get a white background for this colorsection with custom css class?

    white-bg {
    background:#ffffff!important;
    }

    #582332

    Hi!

    Please change the code i posted above to following one

    .page-id-294 #av_section_2 .container {
        background: white;
    }
    #scroll-top-link {
        background: transparent;
        color: white;
    }
    #scroll-top-link:hover {
        background: #649600;
        color: white;
    }
    #socket { border: none !important; }

    Best regards,
    Yigit

    #582341

    Thank you, To the background:

    .page-id-294 #av_section_2 .container {
        background: white;
    }
    #582360

    Hi!

    Oh i see, please use following code instead

    .white-bg .container {
        background: white!important;
    }

    Regards,
    Yigit

    #582364

    PERFECTO! CLOSED. Thank you Yigit!

    #582368

    Hey!

    You are welcome Alex, always happy to help :)

    Regards,
    Yigit

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘custom backgroud for color section’ is closed to new replies.