blog

Discussion in 'RoadFighter WordPress Theme' started by satinfeather99, Sep 16, 2013.

  1. satinfeather99

    satinfeather99 Member

    Joined:
    Mar 5, 2013
    Messages:
    72
    Likes Received:
    0
    Hi when you go to the article on the Blog page the titles are high lighted.

    How would I make the titles of the Blog bolded or at least on their own line on the main blog page. When I add the extra line it does not show up on the main blog page only on the article page.

    http://buff.ly/17BZls1
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1. For your first issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .post_title {
    display: run-in!important;
    }
    
    2.For your second issue

    Go to loop.php present in your theme directory and replace the current code

    Code:
     <?php the_excerpt(); ?>
    With code given below

    Code:
     <?php the_content(); ?>
    Sending image for refernce

    2013-09-16_1623.png


    This will solve your issue.
     

Share This Page