• Resolved toomtz

    (@toomtz)


    1. How do I remove the grey border around the menu?

    2. How do I remove the footer line “Proudly powered by WordPress | Theme: Amadeus by Themeisle.”? I want to replace it with a copyright

    I’m using Amadeus child theme.

    Website: https://sierragaiamassage.com

    Thx!

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi toomtz

    1. How do I remove the grey border around the menu?

    For this try below custom CSS:

    .main-navigation {
           border-top: none;
    
    }
    .main-navigation li {
    
       border-right: none;
    
    }

    And for

    2. How do I remove the footer line “Proudly powered by WordPress | Theme: Amadeus by Themeisle.”? I want to replace it with a copyright

    I think you have already child theme activated.Add below code then:

    add_action( 'after_setup_theme', 'remove_parent_theme_features', 10 );
    
    function remove_parent_theme_features() {
      remove_action( 'amadeus_footer', 'amadeus_footer_credits');
    
    }
    function amadeus_footer() {
    
    		printf( __( '? 2016 COPYRIGHT ALL RIGHTS RESERVED', 'amadeus' ));//Your copyright text here
    
    }
    add_action( 'amadeus_footer', 'amadeus_footer' );

    Hope this will solve your issue.

    Best Regards!!!

    Thread Starter toomtz

    (@toomtz)

    #1 worked perfectly!

    #2 didn’t change. Maybe I missed a step. What code did you mean? “Add below code then:”

    Thank you!

    Hi toomtz

    Oh very sorry for my mistake.You need to paste those code in child theme functions.php file

    Report if any problem.

    Thanks!!!

    Thread Starter toomtz

    (@toomtz)

    perfect! thank you so much!

    Hi @toomtz

    Very happy to hear that your problem was solved.
    Please don’t forget to mark your thread as resolved.
    It will be easy for other to find their solution related to this and marked as resolved.

    Best Regards!!
    Cheers

    Thread Starter toomtz

    (@toomtz)

    Done! Thanks again ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Borders around menu & replace footer "powered by…"’ is closed to new replies.