Blog page issues

Discussion in 'Figero WordPress Theme' started by 2shell, Aug 13, 2013.

  1. 2shell

    2shell New Member

    Joined:
    Jun 8, 2012
    Messages:
    5
    Likes Received:
    0
    I inherited this site.
    The blog page has been customized in the header. The body is in original theme condition. I clean installed the blog page earlier today to make sure it was clean code.

    Issue 1) The post blocks have been changed to the background color and need to revert to white. In need the css to do it. Please advise.

    Issue 2) The H1 heads do not appear as they should according to CSS. Is this being overwritten? Please advise.

    Issue 3) I need to swap out the sidebar with a new one. The old sidebar continues to appear and the new one does not go away. Please advise.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    1. For your first issue,
    Paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .content-info {
    background-color: lightgreen;
    }
    Inplace of "lightgreen" you can put your color or color code.

    2. For your second issue,
    Go to js > custom.js present in your theme directory and remove the code given below


    Code:
    /Font Replace
    Cufon.replace('#menu ul li a',{hover: true})('#colRight h2')('.reply',{hover:true})('h1')('h2')('h3')('h4')('h5')('h6');

    Now,
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS
    Code:
    .content-info h1 {
    color: red;
    font-family: symbol;
    }
    Inplace of "symbol" and "red" you can put your font type and color respectively.
    This will solve your issue.

    3. For your third issue,
    Could you please clarify your third issue and also share your website link.
     

Share This Page