Insert Image and text

Discussion in 'RoadFighter WordPress Theme' started by sociald, Feb 3, 2015.

  1. sociald

    sociald Guest

    Joined:
    Mar 20, 2014
    Messages:
    18
    Likes Received:
    1
    How do I can insert a image and text on the homepage instead of "latest from the blog"
     
  2. praveen

    praveen Support Staff

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

    Please follow the screenshot given below.

    roadfighter_insert_img_text.png

    Code:
     <ul class="my_content">
                            <li>
                              <img src="http://www.wpstand.com/wp-content/uploads/2014/05/inktheme-giveaway.jpg"/>
                              <p>Write text here...</p>
                            </li>
                            <li>
                              <img src="http://www.wpstand.com/wp-content/uploads/2014/05/inktheme-giveaway.jpg"/>
                              <p>Write text here...</p>
                            </li>                                             
                            </ul>
    Now, paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.

    Code:
    ul.featurebox {
    display: none;
    }
    ul.my_content {
    list-style: none;
    }
    ul.my_content img {
    width: 90% !important;
    height: auto !important;
    }
    Thanks,
    Praveen
     

Share This Page