• Hello, I am wanting to increase the font size of pages listed in Header slider menu. thank you. Only have site in preview mode only

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi,

    Here is the CSS code to adjust the font size:

    .text-slider .subtitle {
        font-size: 50px;
    }
    
    .text-slider .maintitle {
        font-size: 65px;
    }

    Put the code into: Customize > additional CSS

    Be aware that this change can make the text on your front page slider overlap incorrectly in your mobile version. I have not figured out how to apply it only to the desktop or tablet versions of my site. Maybe someone can help with that?

    Add this for mobile screen issue:

    @media only screen and (max-width: 767px){
    .text-slider .subtitle {
        font-size: 50px;
    }
    
    .text-slider .maintitle {
        font-size: 65px;
    }
    }

    Feel free to adjust the font-size value.

    Is there something wrong with this code? I put it in and the it seemingly applies to phone/tablet and desktop versions of the site.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Increase font size in Header Menu’ is closed to new replies.