Remove cell phone icon and text under menu

Discussion in 'BlackBird WordPress Theme' started by bizjetblogger, Nov 21, 2012.

  1. bizjetblogger

    bizjetblogger New Member

    Joined:
    Oct 25, 2012
    Messages:
    5
    Likes Received:
    0
    Hi All,

    Installed the Blackbird theme just now and have a few things I'd like to change, but I'm not sure how to do it.

    For reference the blog is at BizJetBlogger.com

    For a start, I'd like to remove the cell phone icon as I won't be giving out my cell phone number.

    Also, underneath the menu is some text. It's the title of one of my previous posts, which I guess is in a slider or something area. However, this is not needed and takes up some important screen real estate, so I would like to completely remove this area.

    If somebody can let me know how to get arid of these it would be much appreciated.

    Thanks!
     
  2. Harmeet

    Harmeet Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    360
    Likes Received:
    15
    Put the following code in custom css

    Appearance -> theme options -> styling options -> custom css
    Code:
    .header-info .cell img {
    display:none;
    }
     
    .page-heading h1 {
    display: none;
    }
    This will solve your problem.
     
    kelseyrule likes this.
  3. bizjetblogger

    bizjetblogger New Member

    Joined:
    Oct 25, 2012
    Messages:
    5
    Likes Received:
    0
    Many thanks, works a treat!

    I'm left with the tap to call part though. I've found the code to remove this as well, but I can't seem to use the above along with it, can you let me know how to get arid of this please?

    Many thanks again!
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Put the following code in custom css
    Appearance -> theme options -> styling options -> custom css

    Code:
    @media only screen and (max-width: 480px){
    .header-info a.btn {
    display: none!important;
    background: none!important;}
    }
     
  5. bizjetblogger

    bizjetblogger New Member

    Joined:
    Oct 25, 2012
    Messages:
    5
    Likes Received:
    0
    Hi there,

    Many thanks, but unfortunately this doesn't seem to work
     
  6. bizjetblogger

    bizjetblogger New Member

    Joined:
    Oct 25, 2012
    Messages:
    5
    Likes Received:
    0
    Please ignore. For some reason I still had the trail version installed rather than the full version!
     

Share This Page