Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #797618

    Hi,
    – how can I remove the underlined text in buttons links?.
    I´ve added this code in quick css but nothing happens.
    .avia-button {
    text-decoration=none!important;
    }
    – I would like also to have a yellow background for the 3 boxes (only in this page)
    Is that possible?
    Could I add some CSS class to that element in particular and manage it via Quick CSS?

    thanks!

    • This topic was modified 6 years, 11 months ago by cipriana.
    #797710

    Hey cipriana,

    1.) You almost got it! It should be a colon instead of an equal sign. Here’s the correct code:

    .avia-button {
    text-decoration: none!important;
    }

    2.) Yes, you can create a CSS class for the Builder elements. But you have to turn the feature on first using the instructions here: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    After that, you can use something like this in Quick CSS:

    .yellow-iconbox {
      background:yellow;
    }

    Or if you want to make it really specific for this page, you can use this:

    .page-id-649 .yellow-iconbox {
      background:yellow;
    }

    I hope that helps!

    Best regards,
    Sarah

    #797732

    Hi!
    -First one worked!
    -Second one:
    My custom css class is named iconbox-amarillo
    I´ve added this code:
    .iconbox-amarillo {
    background:#e9c546;
    }

    But nothing happens.Thanks!

    • This reply was modified 6 years, 11 months ago by cipriana.
    #797767

    Hi! Can you try the !important rule?

    .iconbox-amarillo {
    background:#e9c546 !important;
    }

    Best regards,
    Sarah

    #797771

    That was it!!
    Thank you very much Sarah!

    #797795

    You’re very welcome! Let us know here in the forums if you need help with anything else.

    Cheers!
    Sarah

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Buttons lins not underlined’ is closed to new replies.