Thread Starter
yxw168
(@yxw168)
Only happens on the PC and works fine on mobile device.
Hi @yxw168,
Thank you for reaching out to us for assistance. After checking your site, I noticed this is a CSS conflict from the theme’s creator. To fix this problem, this custom CSS would need to be edited in the theme’s style.css file. If you don’t know how to edit this file, I’d suggest reaching out to the theme’s developer.
If you have any other questions, please let me know, and I’ll be happy to help.
Best regards,
Thread Starter
yxw168
(@yxw168)
Thanks for checking up. Do you allow to tell me more details or we need to figure out by ourselves?
Hey @yxw168,
It is best to reach out to the theme creator, but the specific lines of css are line 6244-6255 in the style.css file. The specific CSS to remove would be:
#sb_instagram #sbi_load {
left: 50%;
position: absolute;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
width: auto;
z-index: 999;
}
This will place the buttons under the feed but keep the other custom styling. Keep in mind that if you update the theme after this, the changes will need to be remade so if you are not already, set up and use a child theme before editing the CSS.
Best regards.
Thread Starter
yxw168
(@yxw168)
Thank you so much for your help.