Certain places on my website are showing extra text after the 2.7 update. I fixed the social icon text by applying a quick css code that I found on the support site.
I cannot however get rid of the “Search” text next to the search icon in the header and also the “Scroll to Top” text where the arrow is that allows you to scroll to the top of the page
My website is http://www.jaredburnettphoto.com
Thanks.
Hi JaredBurnett!
Seems like it is fixed now – http://i.imgur.com/IJF2jV3.png
Let us know if you have any other questions or issues
Best regards,
Yigit
Yes it is fixed now. However my social icons on mobile went way up and to the left. You can see the very bottom at the top of the screen on a mobile device.
Hi!
Please add following code to Quick CSS
@media only screen and (max-width: 767px) {
.responsive.html_header_top #header_main .social_bookmarks {
right: -15%;
margin-top: 0;
}}
@media only screen and (max-width: 480px) {
.responsive.html_header_top #header_main .social_bookmarks {
right: 0;
}}
Regards,
Yigit
That got it pretty close, to take it down just slightly do I use “top: -5%” ?