Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1295533

    Hello

    I am using a masonry portfolio with 3 columns but the text that shows on hover is way too big.

    I found this code attached to the title:
    <h3 class="av-masonry-entry-title entry-title " itemprop="headline">Title Goes Here</h3>

    Can you help me to decrease the size of this text across the whole website?

    Thank you

    #1295942

    Hey sitesme,

    Please try the following in Quick CSS under Enfold->General Styling:

    h3.av-masonry-entry-title {
      font-size: 18px;
    }

    Best regards,
    Rikard

    #1295946

    Thank you Rikard.

    That didn’t work, but I added !important and then it worked right away:

    h3.av-masonry-entry-title {
      font-size: 18px !important;
    }

    Thank you for your great help.

    • This reply was modified 3 years, 7 months ago by sitesme.
    #1296073

    Hi sitesme,

    You can try to increase the specificity of your selector so you won’t need to use !important, try using this CSS code instead:

    #top #wrap_all h3.av-masonry-entry-title {
      font-size: 18px;
    }

    Best regards,
    Nikko

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