Hi, is it possible to change the size of the Feature Text Heading text? At the moment it is H1. <div class="grid_24 content"> <div class="content-wrapper"> <div class="content-info"> <h1 class="title"> Feature Text Heading text here - Feature Text Heading text here </h1> </div> On the mobileview its also this big. Can the size be changed to H2? Were can i change this code? Thank you, Regards, J
Hello! Please paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: @media only screen and (max-width: 767px) and (min-width: 480px){ .content-info h1.title { font-size: 28px !important; } } @media only screen and (max-width: 480px){ .content-info h1.title { font-size: 24px !important; } } Hope it will resolve your issue. Kindest regards, Praveen