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..

Home Forums Jevelin Theme Author box shows up twice? One weirdly shows up under the footer..

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
  • dl703
    Participant

    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

    dl703
    Participant

    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.

    dl703
    Participant

    I took out all my custom CSS code and only place the code you entered and it still doesn’t work..

    Attachments:
    You must be logged in to view attached files.

    dl703
    Participant

    Also here, still does not work as you can see it appears under the footer

    Attachments:
    You must be logged in to view attached files.

    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;
    }
Viewing 7 posts - 1 through 7 (of 7 total)