Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1081799

    Hi there,

    I’m looking to modify the font size and link style of the icon box and while I had some success on my own, I didn’t manage to achieve the exact styling I’m looking for.

    So, here is what I’m looking to do:

    Remove uppercase font decoration
    Change font-size to 20px
    If possible, replace underline in hover state of link with custom color

    I included a link to the page I’m working on in private.

    Many thanks for your time and help with this. I sincerely appreciate it.

    Best,

    #1083094

    No response in 4 days? That’s a first! :-(

    #1083307

    Hi,

    Not sure but do you mean that you want to change the section inside the black area”?

    Best regards,
    Basilis

    #1084015

    Hey Basilis, thanks for getting back to me.

    No, I actually want to change the font size of the, I guess you’d call it the header or title of the icon box (e.g. Strategy). In addition, I’d also like to have the corresponding link in color upon hover, rather than with an underline.

    Many thanks for your time and help with this.

    #1085125

    Hi,

    #top .av_inherit_color a {
    font-size: 26px;
    }
    #top .av_inherit_color a:hover {
    color: red;
    }

    Try this. You can change the size and the color to what ever you need for you.

    Best regards,
    Basilis

    #1109223

    Thank you so much; Basilis,

    Almost there. Just two more things:

    (i) It looks like there may be an issue with the line height as the “g”s and “y”s in the link seem to be cut off at the bottom
    (ii) Is there a way to eliminate the underline in the hover of the link?

    That’s it. Again, many thanks for your time and help with this. You guys really rock!

    #1109834

    Hi,

    Thank you for the update.

    1.) Look for this css code.

    .avia-icon-list .iconlist_title {
        text-transform: uppercase;
        top: 4px;
        margin-bottom: 0;
        position: relative;
    }

    Remove the “top” property or set the value to 0, then adjust the top margin from 17px to 21px.

    2.) Use this css code to remove the text decoration or underline.

    #top .avia-icon-list .iconlist_title a:hover {
        text-decoration: none;
    }

    Best regards,
    Ismael

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