Tagged: 

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

    how can I center the icon list halfway down the page on the site below?
    I dont’ see anyway to control the position when I make the item.
    thanks
    N

    #408072

    Hi N!

    Please add following code to Quick CSS

    @media only screen and (min-width: 990px) {
    .home .avia-icon-list-container {
      margin-left: 55px;
    }}

    Best regards,
    Yigit

    #410940

    HI Yigit
    that worked in a way, but I need the icon list to be centered at all sizes – can you take another look?
    I can adjust the margin, right now at << margin-left: 135px; >> but that only works at a certain screen size.
    Is there a way to get it to center the icon list in the 3/5 column it’s in?
    thanks for your help
    N

    #411585

    Hi Munford!

    The page you linked is returning 404.

    Cheers!
    Josue

    #411588
    This reply has been marked as private.
    #411600

    Hey!

    Try using a smaller column (here) instead of a 3/5.

    Best regards,
    Josue

    #411601

    I tried that but then some of my lines break – the text beside the icons goes to 2 lines.

    #411603

    Hi!

    Can you try that first? change it to the size you think is optimal, then we can work the titles with CSS.

    Cheers!
    Josue

    #412018

    I have it now in a 1/3 1/3 1/3 layout with the icon list in the center. It looks OK on large screens, but my client was seeing the first icon title running to 2 lines, even on her 13″ screen. Can you take a look? I guess there is not an easy way just to “center” the whole list? Can it be centered in the 1/3 block itself?

    thanks for your help
    N

    #412524

    Hey!

    Try the following code:

    .av_one_third .avia-icon-list .iconlist_title {
        min-width: 320px;
        margin-top: 0 !important;
        position: relative;
        top: 20px;
    }
    
    .av_one_third .avia-icon-list .iconlist_content_wrap {
        overflow: visible;
    }

    Best regards,
    Josue

    #412529

    that looks good except for on ipads…too large a margin on the left throws it off center.
    Can that be tweaked?

    #412536

    Add this:

    @media only screen and (min-width: 767px) and (max-width: 989px) {
        .av_one_third .avia-icon-list {
            margin-left: -50px;
        }   
    }
    #412646

    perfect! thanks so much
    #teamkriesi !

    #412653

    You are welcome, always glad to help :)

    Regards,
    Josue

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