Blog, Website & Page Publishing

SHarvey4
Participant

Viewing Blog on Mobile Shows Massive Icons but web view is fine

SOLVE

We've posted our blog and it looks fine online but via the mobile view there are massive social media icons that we have no idea where they've come from or how to remove them, help please!!

 

http://findyouractivity-9290761.hs-sites.com/blog/the-magic-academy?utm_content=169288198&utm_medium...

 

 

 

0 Upvotes
1 Accepted solution
Ben_M
Solution
Key Advisor

Viewing Blog on Mobile Shows Massive Icons but web view is fine

SOLVE

It's definitely in your template even in the desktop view.  It looks like they are using positioning to push it off-screen which is a bad thing to do if youa re trying to rank the page in SEO. I don't know exactly where this is depending on how your template is built, but the area in question looks like this:

 

<div class="blog-post social-sharing"></div>

 

If you search your template for that code and remove that it will remove the social sharing icons.

View solution in original post

2 Replies 2
webdew
Guide | Diamond Partner
Guide | Diamond Partner

Viewing Blog on Mobile Shows Massive Icons but web view is fine

SOLVE

Hi @SHarvey4 ,

You can use this code in your blog style.css to remove them

 

@media (max-width:767px){

 

article.blog-post .blog-post__social-sharing {

    display: none;

}

Hope this helps!


If we were able to answer your query, kindly help the community by marking it as a solution.

Thanks and Regards.

Ben_M
Solution
Key Advisor

Viewing Blog on Mobile Shows Massive Icons but web view is fine

SOLVE

It's definitely in your template even in the desktop view.  It looks like they are using positioning to push it off-screen which is a bad thing to do if youa re trying to rank the page in SEO. I don't know exactly where this is depending on how your template is built, but the area in question looks like this:

 

<div class="blog-post social-sharing"></div>

 

If you search your template for that code and remove that it will remove the social sharing icons.