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!
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.
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!
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;} }