Removing Home Page Feature Section and text

Discussion in 'Blackriders WordPress Theme' started by bernz3, Jan 19, 2015.

  1. bernz3

    bernz3 Member

    Joined:
    Feb 18, 2012
    Messages:
    56
    Likes Received:
    0
    How do I remove the home page feature picture and text?

    Thank you.
     
  2. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.


    To remove complete feature box use.
    Code:
    .feature_box {
    display: none;
    }
    To remove circle images from feature box use.
    Code:
    .feature_inner_box .circle {
    display: none;
    }
    To remove heading from feature box use.
    Code:
    .feature_inner_box h6{
    display: none;
    }
    To remove text from feature box use.
    Code:
    .feature_inner_box p{
    display: none;
    }
    Thanks & Regards
    Pramod
     
  3. historik951

    historik951 New Member

    Joined:
    Jan 16, 2015
    Messages:
    5
    Likes Received:
    0
    how can you access it if it's missing?
     
  4. Pramod

    Pramod Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,847
    Likes Received:
    63
    Hello historik951 !

    Please explain little bit more about your issue.

    Thanks & Regards
    Pramod
     

Share This Page