Can I include an image and text in the "top right contact details" section? If so, how? Thanks, Glenn lacultra.com
Hello, Go to the "Top Right Contact Details" section ( Appearance > Theme Options > General Settings ) in your dashboard and paste the code given below Code: <img src="Enter the image URL address here"> <p>Enter your text here</p> This will solve your issue.
Thank you. However, it doesn't work. The text shows, but not the image. Is there a size limit? My image is 150x150 Also, is there a way to have this image link to a page?
Hello, There is a code Code: .header .contactinfo img { display: none; } in the custom css (Appearance > Theme Option > Styling Option > Custom CSS) which is restriction image to display there. Replace that code with code given below. Code: img[alt="Contact Info"] { display: none; } It will work.
Thank you again, but I still would like to add a link to this image. Also, the image is justified left, and I'd like it aligned right. Can you help me with this?
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .header .contactinfo span.calldetails { text-align: right; float: right; } This will solve your issue.
Thanks, Piyush. I did this and it worked to bring the image to the right. However, you forgot to tell me how I can make it clickable to a link. Thanks.
Hello, You can use hyperlink code for this issue. See the link for more details http://www.w3schools.com/html/html_links.asp Add the hyper link code with image code as given below. Code: <a href="Enter Your Link Here"><img src="Enter the image URL address here"> </a> This will solve your issue.