How can I add a tag line to the home page?

Discussion in 'Themia WordPress Theme' started by scarn8881, Aug 12, 2015.

  1. scarn8881

    scarn8881 Guest

    Joined:
    Jan 15, 2013
    Messages:
    41
    Likes Received:
    0
    How can I add a tag line between the home page slider and the home page settings?

    See attached image as an example.

    website is www.nolanjames.net but I have a maintenance page uploaded. Thank you!
     

    Attached Files:

  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

    Please follow the screenshot given below.
    Themia_add_custom_tagline_below_slider.png

    PHP:
          <div class="clear"></div>
       
          <
    div class="grid_24">
            <
    div class="slider-bottom-tagline">
            <
    p>Write your text here...</p>
            </
    div>
          </
    div>
    Note:- For your information, I am using "WP-Editor" plugin to edit files.
    You can also download and use it from the link https://wordpress.org/plugins/wp-editor/.

    After activating this plugin, you will get the same screen as shown in the screenshot.

    Now, paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .slider-bottom-tagline {
        text-align: center;
    }
    .slider-bottom-tagline p{
        font-size: 20px;
        font-weight: bold;
        padding:10px 0;
        font-family: 'Times Roman';
    }
    Hope it will resolve your issue :)

    Regards!
    Praveen
    InkThemes.com
     

Share This Page