Viewing 4 replies - 1 through 4 (of 4 total)
  • Hello @rasta_wdpr

    To remove the footer and the triangle , you need to add the Custom CSS through the plugin.

    You can find many plugin to add custom CSS. Below link is the reference for one of the plugin.
    Custom CSS

    After installing the plugin you will find the custom CSS in Admin Panel / Appearance / Custom CSS.
    Now paste the below CSS .

    
    footer#colophon {
        display: none;
    }
    
    div#secondary {
        display: none;
    }

    Hope this will help to resolve your issue.

    Regards!!

    Thread Starter rasta_wdpr

    (@rasta_wdpr)

    thank you for replying…

    yup i have a custom CSS plugin installed.. thanks for the code it code worked!

    but one more question… what if i want add some social media icons there… should i keep the footer but just remove the info there instead?

    Hello @rasta_wdpr

    I am very pleased to know that you have solved your issue .
    If you want to add social media icons, you should keep the footer just by removing the content.

    Hope you understand.

    Best Regards!!

    You could also target .site-info to only hide the footer credit, and keep the social icons in tact:

    .site-info {
        display: none;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘footer removal’ is closed to new replies.