Home › Forums › Jevelin Theme › Author box shows up twice? One weirdly shows up under the footer..
Home › Forums › Jevelin Theme › Author box shows up twice? One weirdly shows up under the footer..
I’m trying to add a custom author box with a plugin because your theme doesn’t let me add any social icons. For some reason the author box shows up twice? There’s a random extra one that shows up under the footer.
Here is the link: https://myladder.health/hello-world/
Hi @dl703,
I hope you are well today and thank you for your question.
You can hide duplicate one by adding the following CSS code in the Custom CSS code option of your theme on the below path.
Admin Area -> Appearance -> Theme Settings -> Custom Code -> CSS Code
.saboxplugin-wrap { display: none; } #content .saboxplugin-wrap { display: block; }
Best regards,
Shufflehound team
Hi,
I’ve added the code but it didn’t work. As you can see with the link: https://myladder.health/hello-world/
The 2nd author box is still there under the footer..
This is not working because you are using some invalid CSS code on your site so please try adding the shared CSS code at the beginning of your existing CSS code.
It seems not working due to CSS specificity issue.
Please try changing the above shared CSS code as below.
.saboxplugin-wrap { display: none !important; } #content .saboxplugin-wrap { display: block !important; }