Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #1470267

    Hello, How would I increase the vertical spacing of my icon list on just this page?

    #1470304

    Hey michelebond,

    Thank you for the inquiry.

    Did you set the Styling > General Styling > List Styling settings to Minimal small list? Please try to reset it to default, or add this css code:

    #top .av-iconlist-small li {
        padding: 10px 0;
    }

    Best regards,
    Ismael

    #1470361

    How do I change it for just this page? I do have an icon list on another page which I dont want to change the size.

    #1470389

    Hi,

    Thank you for the update.

    How do I change it for just this page?

    You can edit the Icon List element in the page and configure the options as suggested above.

    Best regards,
    Ismael

    #1470390

    Hi,

    UPDATE: You can try applying a custom css class name to the element. Please check this link: https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    #1470445

    Thanks – do I add the custom class like this?

    iconpadding. #top .av-iconlist-small li {
    padding: 10px 0;
    }

    and than add the class iconpadding to the element?

    #1470481

    Hi,

    If you are using the class iconpadding, then you should use CSS like this:

    .iconpadding li {
      padding: 10px 0;
    }

    The period before the letters means that a class is being targeted in CSS.

    Best regards,
    Rikard

    #1470596

    I went ahead and added that css in the general styling and added the custom id to the icon list but the space did not apply.

    #1470601

    Hi,

    The class doesn’t exist on that page, where exactly did you add it?

    Best regards,
    Rikard

    #1470604

    to the icon list on the contact page Attached is a screenshot.

    #1470627

    Hi,

    Thank you for the update.

    The value “iconpadding” is used as the ID attribute instead of class name. Try to use this css code:

    #top #iconpadding .av-iconlist-small li {
       padding: 10px 0;
    }

    If you want to use it as a class name, move “iconpadding” to the Custom CSS Class field, then use this css:

    #top .iconpadding .av-iconlist-small li {
       padding: 10px 0;
    }
    

    Best regards,
    Ismael

    #1470672

    Perfect. 5 Stars!

    #1470754

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Icon list vertical spacing’ is closed to new replies.