remove underlines

  • Unknown's avatar

    hello, windowparts.ca is my domain name as of right now. if you scroll to the bottom of the front page I am trying to remove the underlines under the Page name links ‘about’ etc. How do I do this? Also, is there anyway to remove the designed by smart cat?

  • Unknown's avatar

    Hi there,
    It looks like the site windowparts.ca is self-hosted on WordPress.ORG and not WordPress.COM.

    Both are different products. You can find out the differences between them here: https://en.support.wordpress.com/com-vs-org/

    So you have posted your issue in the wrong forum. You have to post this issue in this forum: https://wordpress.org/support/
    _________

    Still i will help you out with it,
    To hide the underlined links at the bottom of the page, just add “display: none;” CSS code to the class “.athena-footer-nav”.

    The current code looks like this:

    .athena-footer-nav {
        margin-top: 10px;
    }

    After adding “display: none;” it will look like this:

    .athena-footer-nav {
        margin-top: 10px;
        display: none;
    }

    To remove the “Design by Smartcat” text from the footer, you have to edit the “footer.php” file of the theme because it uses an inline CSS code.

    To edit the .PHP file of the theme, go to the CSS editor page, on the sidebar you will a bunch of .PHP files. Find the footer.php file and remove the following code:
    <a href="https://smartcatdesign.net" rel="designer" style="display: block !important" class="rel">Design by Smartcat <img src="http://windowparts.ca/wp-content/themes/athena/inc/images/cat_logo_mini.png"></a>

    NOTE: Do not remove this code if you do not have appropriate license(provided when purchasing the theme) to do so.
    _________

    Remember… You should post the issues related to your site on this forum: https://wordpress.org/support/ , not here. Since this forum only supports the sites hosted on WordPress.COM and not WordPress.ORG

  • The topic ‘remove underlines’ is closed to new replies.