Change color and font size in the lead capture title

Discussion in 'Blackriders WordPress Theme' started by deveshd, Oct 9, 2014.

  1. deveshd

    deveshd Member

    Joined:
    Jul 21, 2012
    Messages:
    282
    Likes Received:
    4
    How do I change the color and font size of the lead capture form title? I wish to make the first line in different font size & color and second line in different font size & color like sample below:
    CONTACT US FOR A
    FREE ESTIMATE!


    Screen Shot 2014-10-09 at 3.40.27 PM.png
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,
    Use below format in Lead Capture Form Heading.
    HTML:
    <span class="headingfirstline">HELLO FIRST LINE</span>
    <br/>
    <span class="headingsecondline">HELLO SECOND LINE</span>

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .headingfirstline{
    font-size:25px !important;
    color:red !important;
    }
    .headingsecondline{
    font-size:35px !important;
    color:green !important;
    }
    Set color,font-size and heading text according to your requirement.

    Thanks & Regards
    Pramod
     

Share This Page