FGZS Posted November 20, 2023 Share Posted November 20, 2023 Hello, I wanted to ask how to increase the size of the header font size in the mobile view only. I have also removed the dropdown menu in the mobile view by using the following code (which works well): .burger-inner { display: none !important; } When I try to add other codes found in the forum the drowpdown menu comes back and the font does not increase. The URL of the website is https://www.mossinfrastructure.com/ and the password to the website is Test Many thanks! Link to comment
Solution cecilesablayrolles Posted November 20, 2023 Solution Share Posted November 20, 2023 Hi! Try this: @media only screen and (min-device-width : 320px) and (max-device-width : 480px) { .header-display-mobile .header-title-text { font-size: 30px; } } And adapt the size (30px here) as you like :) Link to comment
FGZS Posted November 21, 2023 Author Share Posted November 21, 2023 Yes, that has worked, many thanks for your help! Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment