Remove Horizontal Lines

Discussion in 'Poloray WordPress Theme' started by spoonboy90, Mar 27, 2013.

  1. spoonboy90

    spoonboy90 Active Member

    Joined:
    Dec 20, 2012
    Messages:
    289
    Likes Received:
    28
    Location:
    Stoke-on-Trent, Staffordshire. UK
    I've managed to remove the homepage tagline and button using the following code

    Code:
    .content_info{
    display:none;
    }
     
    .content-info-btn{
    display:none;
    }
    But I can't see what i'd need to add for the horizontal line below and the one below that would divide the first and second sections (i've also hidden the second feature)

    http://shared.sfx-hosting.co.uk/fergussons/ or www.fergussons-accountancy.co.uk (if the DNS has propagated)

    Thanks
    Jamie
     
  2. Harshvardhan

    Harshvardhan Administrator

    Joined:
    Mar 23, 2013
    Messages:
    16
    Likes Received:
    0
    Hi ,

    For removing Top and bottom horizontal line of feature box use following code:

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

    .top_content_wrapper {
    background:none;
    }
    .feature_box {
    background:none;
    }

    Please use Following code for putting horizontal line below the feature box

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

    .feature_inner_box {
    border-bottom:solid 1px #000000;
    }

    Thanks
     

Share This Page