Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1475801

    how do I increase font size of Subheading Text in the Special Heading on mobile view? I tried this but it didn’t change it

    /* Increase subheading font size on mobile */
    @media only screen and (max-width: 767px) {
    .av-special-heading .av-subheading {
    font-size: 18px !important; /* Adjust as needed */
    line-height: 1.4 !important; /* Optional for spacing */
    }
    }

    #1475805

    besides the possibility to set it directly in the element itself:
    (here an example with screen-width less than a given value)

    you can manage it by quick css too:
    (you only missed to select the p tag inside your selector)

    @media only screen and (max-width: 767px) {
      #top .av-special-heading .av-subheading p {
        font-size: 24px
      }
    }
    #1475811

    Hi,

    Thanks for helping out @guenni007 :-)

    Best regards,
    Rikard

    #1475833

    It still doesn’t make it larger. Is there some other code that is blocking or taking over?

    And I already tried to increase font size inside the Special Heading.

    thanks

    #1475841

    Hi,

    Thank you for the update.

    Where can we check the element? Please create a test or provide the link to the page where you need to adjust the subheading text. Have you tried to temporarily disable the Enfold > Performance > File Compression settings?

    Best regards,
    Ismael

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