Home page - Cloriato WordPress Theme

Discussion in 'Cloriato WordPress Theme' started by bridgie, Dec 28, 2013.

  1. bridgie

    bridgie Member

    Joined:
    Apr 13, 2012
    Messages:
    53
    Likes Received:
    0
    Hi

    My site is - http://lamontracing.co.uk/

    I would like to know how to do the following please -
    remove the 'read more'.

    Remove the 'bold' of the headings.

    Thanks
     
  2. Gourav

    Gourav Support Staff

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

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

    Code:
     .feature_content .read_more {
    display: none;
    }
    
    2. Go to js > custom.js present in your theme directory and remove the code given below

    Code:
    //Font replace 
    Cufon.replace('h1')('h2')('h3')('h4')('h5')('h6'); 
     
    Now,

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

    Code:
    h1, h2, h3, h4, h5, h6, a{
    font-weight:lighter!important;
    }
     

Share This Page