Okay
  Public Ticket #841820
Change Font Size of Slider Text
Closed

Comments

  • Joe Matibag started the conversation

    Hi,

    How do I change the Font Size and Width of  the Slider Text?

    I thought I figured out that the Slider Text Font Size is controlled by class="t-current". But I could not find it in style.css.

    Also, how can I change the width of the Slider Text area? I want to add more text.

    Thanks

  •  850
    Jelly replied

    Hi,

    Please add the css code in the path: Appearance -> Theme Editor -> Style.css, please put it in the end of the file:

    .main-title ul {font-size: type you size you want here;}

    Best Regards,
    Jelly Team

  • Joe Matibag replied

    Thanks.

    I was able to change the font size. I appreciate your help.

    But I could not get the line-spacing to adapt to different Viewports? The line-wrap left too much space when I looked the site from my phone.

    I tried changing line-spacing within the CSS below, but I couldn't improve the responsive behavior.

    @media only screen and (max-width: 479px)
    .main-title {
        font-size: 30px;
    }
    @media only screen and (max-width: 479px)
    .main-title {
        height: 300px;
        top: 50%;
        margin-top: -150px;
    }


  •  850
    Jelly replied

    Hi,

    The correct will look like my code below:

    @media only screen and (max-width: 479px){
    .main-title {
        font-size: 30px;
    }
    .main-title {
        height: 300px;
        top: 50%;
        margin-top: -150px; } }

    Please try again.

    Best Regards,
    Jelly Team