Transparent Bottom Menu/Border

On my site, sailtupelohoney.com, I was able to make the menu bar transparent with this code provided in another post:

nav#site-navigation {
border-bottom: 0;
background: transparent;
}

  1. Is it possible to do the same for the bottom border containing this wording “Theme by Colorlib Powered by WordPress?”
  2. Can I change the text color in the now-transparent top menu border, both the site title and menu text?

Hi Bob

  1. Sorry but no, it will reuqire not only css but layout modifications as well, this is not an easy task
  2. yes, this is possible:

Please add this CSS code in the Appearance > Customize > Additional CSS:

nav#site-navigation * {
    color: #000;
}

Regards

1 Like