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

    View post on imgur.com

    how can i bring icon to vertical center?

    #750955

    How can i remove the underline (link url)

    #751251

    Hi,

    Try adding this css code in Quick CSS (located in Enfold > General Styling):

    .home #av_section_6 .avia_textblock p {
        position: relative;
    }
    
    .home #av_section_6 .avia_textblock > p > a:nth-child(2) {
        position: absolute !important;
        top: -20px;
        left: 50%;
        margin-left: -11px !important;
    }

    the icon might not look centered because of the text below it not occupying the whole space, but if you center the text below it or add a background color you should see it centered. Or you can adjust the margin-left value as you see fit.

    You can remove the underline by adding this css code:

    .home #av_section_6 .avia_textblock a {
        text-decoration: none;
    }

    Best regards,
    Nikko

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