Change size Feature Text Heading to H2

Discussion in 'ColorWay WordPress Theme' started by dukennl, Apr 14, 2015.

  1. dukennl

    dukennl New Member

    Joined:
    Jul 23, 2012
    Messages:
    3
    Likes Received:
    0
    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
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    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
     

Share This Page