Home Feature Items (Circles & Descriptions)

Discussion in 'Poloray WordPress Theme' started by dddeads, Feb 25, 2014.

Thread Status:
Not open for further replies.
  1. dddeads

    dddeads New Member

    Joined:
    Oct 28, 2013
    Messages:
    22
    Likes Received:
    0
    Hello,

    At this time, I only need two out of the four feature items on the home page. I'm speaking of the round feature photos with descriptions. How do I hide/delete two of those and then "center" the ones I am using?

    Thanks.
     
  2. Piyush

    Piyush Support Staff

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

    Go to the front-page.php file present in your theme directory and
    remove the code of second and third feature section from line number 235 to 274.

    See the image for reference.
    1.
    [​IMG]
    2.
    [​IMG]


    Now, put "grid_12" in place of "grid_6" in this file as shown in the image given below.

    [​IMG]


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

    Code:
    @media only screen and (min-width: 960px){
    .feature_inner_box {
    width: 470px;
    }
    .feature_inner_box .circle {
    margin-left: 140px;
    }} 

    This will solve your issue.
     
  3. desmondw

    desmondw Member

    Joined:
    Dec 28, 2011
    Messages:
    34
    Likes Received:
    0
    Hello,
    If I want completely hide section with circled images, do I just remove the code as shown and omit code insert in Theme Options -> Styling Options ->Custom CSS ?
     
  4. desmondw

    desmondw Member

    Joined:
    Dec 28, 2011
    Messages:
    34
    Likes Received:
    0
    I forgot to mention in my previous submission that my question applies to the lite version of theme.
     
  5. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207

    Hello,

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

    Code:
    div.feature_box {
    display: none;
    } 

    Thanks & Regards
    Gourav Shrivastava
     
  6. desmondw

    desmondw Member

    Joined:
    Dec 28, 2011
    Messages:
    34
    Likes Received:
    0
    Thanks Gourav.
     
Thread Status:
Not open for further replies.

Share This Page