Hello, I want to remove the telephone image on my site (as well as the phone number, which I know how to remove) so the banner ad that's just below it rises into place within the right header of my site. You will see the current site appearance here: http://GiftBasketBusiness.com/ How do I remove the telephone image to the left of the toll-free number so the banner image is better positioned on the site? Thank you, Shirley
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: img[alt="Contact Info"] { display: none; } This will solve your issue.
Thank you for the solution, Piyush. I'd like the banner ad to appear a bit higher, directly across from the logo on the left, but I'll work with this right now. Shirley
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .header .contactinfo { margin-top: -30px; } You can adjust the value of "margin-top" as per your requirement. This will solve your issue.