BlogSpring Theme amendments help

Discussion in 'BlogSpring WordPress Theme.' started by mummyweekly, Oct 9, 2014.

  1. mummyweekly

    mummyweekly New Member

    Joined:
    Oct 4, 2014
    Messages:
    1
    Likes Received:
    0
    Hello team,

    I am trying to remove the Phone Icon at the top of the blog spring and also remove the authorbox at the bottom of each blog page.

    When I use the below code (it works)

    .call_us p {
    display: none;
    }


    I can remove the phone icon but If I also use the author_box command as well, it doesnt work.

    .call_us p {
    display: none;
    }
    .author_box {
    display: none;
    }
    How I can put code that will remove author box at the end of each blog page as well as the Phone icon/symbol????
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    .content-bar .author_bar .author_info {
    display: none;
    }
    .call_us p {
    display: none;
    }
    It will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     

Share This Page