Go to Appearance -> Customize -> Additional CSS, and add this:
.no-featured .sticky-btn{
display: none;
}
]]>
Go to your stylesheet and find this code.
.no-featured .sticky-btn {
position: fixed;
top: 47%;
z-index: 9999;
}
And add display property {display: none;}.
I hope it will solve your problem. And let me know if there issue.
Thanks,
If you’re not aware, making changes directly to theme or plugin files will mean those changes will be erased when something updates.
]]>We are aware with this thing if we modify a chaild theme style.css there will no any with theme “update” problem.
]]>Thank you for your quick reply. I used your method and it worked perfectly on that page. However, I just realized, I need to remove it from all the pages. Is that possible?
Hi Guru,
Also, thank you for your help. Does your method work to remove the sticky side bar from all the pages?
Please advise.
Thank you.
]]>Try this:
.sticky-btn{
display: none !important;
}
]]>
Problem fixed! ??
]]>