Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1468093

    Hi,

    I have already tried with css to change this – but only on the Promo Box Button element it is not possible to change to location of the icon to the right. Could you help me or tell me how to change this?

    The option to select show icon ‘left’ or ‘right’ seems to be missing – and now it only displays it at the LEFT.

    Which is strange – because at the beginning it says “Do you want to display a Call to Action Button on the right side of the box?” but this isn’t possible..

    • This topic was modified 1 month, 3 weeks ago by rgenieters.
    #1468100

    btw – dear devs : Is it intended that the label will be affected when selecting “Show on hover only”?
    On default button it is the icon!

    Anyway – if you do not use that option :

    #top .av_promobox .avia-button-wrap.avia-button-right .avia-button {
      display: flex !important;
    }
    
    #top .av_promobox .avia-button-wrap.avia-button-right .avia_button_icon {
      order: 2;
      margin-left: 15px
    }

    if you do not want to affect all promo box elements with button – use a custom class on that element f.e.: right-icon

    #top .av_promobox .avia-button-wrap.right-icon .avia-button {
      display: flex !important;
    }
    
    #top .av_promobox .avia-button-wrap.right-icon .avia_button_icon {
      order: 2;
      margin-left: 15px
    }
    #1468134

    Hi,

    The option to select show icon ‘left’ or ‘right’ seems to be missing – and now it only displays it at the LEFT.

    The Icon Position option is only available on the Icon element. If you want to move the button icon to the left, please try @Guenni007’s modification above.

    btw – dear devs : Is it intended that the label will be affected when selecting “Show on hover only”?

    Yes, the option Button Label display is actually intended for the button label as the name describes.

    Best regards,
    Ismael

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.