Want to remove From the blog and Recent Work from front page in Andrina

Discussion in 'Andrina WordPress Theme' started by jlloydellis, Dec 4, 2012.

  1. jlloydellis

    jlloydellis Guest

    Joined:
    Dec 4, 2012
    Messages:
    3
    Likes Received:
    0
    I would like to remove the "From the blog" and "Recent Work" from the front page of a site I'm working on - www.7750wisconsinavenue.net. I'm presuming I just need to put in some css in teh styling options, but don't know what they are called.
     
  2. 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:
    ..bottom-feature .bottom-feature-left h1 {
    display: none;
    }
    .bottom-feature .bottom-feature-right h1 {
    display: none;
    }
     
  3. dcarels

    dcarels New Member

    Joined:
    Dec 7, 2012
    Messages:
    18
    Likes Received:
    0
    I copy and pasted exactly the code you have above, but it did not work. Is there something I missed?

    I removed the ".." and "h1" and then it removed the blog posts and video. I still need to figure out how to get rid of "Recent Projects"
     
  4. dcarels

    dcarels New Member

    Joined:
    Dec 7, 2012
    Messages:
    18
    Likes Received:
    0
    I got it to work. I added the following to custom CSS:

    .feature-content {
    display: none;
    }
     
  5. califfx

    califfx Member

    Joined:
    Feb 28, 2013
    Messages:
    34
    Likes Received:
    5
    OK I know this post is going to confuse people that are new to this so... If you need the corrected proper code here it is:
    .bottom-feature .bottom-feature-left {
    display: none;
    }
    .bottom-feature .bottom-feature-right {
    display: none;
    }
     
    imagegrafx and enphone like this.

Share This Page