Font styles

Discussion in 'Cloriato WordPress Theme' started by drixe, Nov 29, 2012.

  1. drixe

    drixe New Member

    Joined:
    Nov 19, 2012
    Messages:
    7
    Likes Received:
    0
    Hi,
    I want to edit the custom font styles.
    In category page, the title_post is slightly indented (7px) and I want to remove this.

    <cufon class="cufon cufon-canvas" alt=" " style="width: 7px; height: 24px; ">
    I can't find a way to make it invisible or width="0"

    Thanks for helping.
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    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');
    Sending image for reference

    [​IMG]

    This will solve your issue.
     
  3. drixe

    drixe New Member

    Joined:
    Nov 19, 2012
    Messages:
    7
    Likes Received:
    0
    Thanks for answering.
    This will solve the issue… by killing the patient !-)

    I just want to remove an annoying bit of spacer before the post-title in the category page to align with other elements.
    I want to keep the custom fonts. Of course.

    See the pics (blured some parts for privacy reasons)

    Capture d’écran 2012-11-29 à 13.49.15.png
     
  4. drixe

    drixe New Member

    Joined:
    Nov 19, 2012
    Messages:
    7
    Likes Received:
    0
    So, any solution ?
     
  5. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
     .content_wrapper .content .post .post_title {
    margin-left: -7px;
    }
    
     

Share This Page