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.
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 This will solve your issue.
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)
Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .content_wrapper .content .post .post_title { margin-left: -7px; }