Make logo bigger and remove Homepage Featured Section

Discussion in 'Figero WordPress Theme' started by kevin11, Dec 11, 2012.

  1. kevin11

    kevin11 Guest

    Joined:
    Dec 11, 2012
    Messages:
    2
    Likes Received:
    0
    Hi, I have two issues that I assume will be solved with custom css. I want my logo to be about twice as wide as it is. (Currently, when I load it at the size I want it, it automatically resizes to the predetermined width.) How do I fix this?

    Also, I want to get rid of the Homepage Featured section. How can I do this?

    Thanks!
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    1.For your first issue

    Go to header.php present in your theme directory and follow the instruction as shown in image given below

    [​IMG]


    Now,

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


    Code:
    .header-container .header .logo img {
    width: 450px;
    }


    2.For your second issue

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

    Code:
    .content {
    display: none;
    }
     
  3. kevin11

    kevin11 Guest

    Joined:
    Dec 11, 2012
    Messages:
    2
    Likes Received:
    0
    Thanks! Also, how do I eliminate the section with lipsum below that?
     
  4. 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:
    .index-container .full_cols{
    display:none;
    }
     

Share This Page