• Resolved rufi0o

    (@rufi0o)


    I hope this is a simple fix.. I want to remove the thin grey lines above and below the main menu.. Even a couple lines of code to put into my child themes style.css to change the color of the lines to #fff so that they aren’t visible will suffice.. Your time and assistance is greatly appreciated

Viewing 6 replies - 1 through 6 (of 6 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Let’s see your site

    Thread Starter rufi0o

    (@rufi0o)

    Designing for a friend.. Don’t judge me on the content haha and thanks again for taking the time to help me Andrew

    https://www.stylebystassi.com/

    This is the entry in the CSS Editor that you want to change.
    Better to change it at the bottom of the file so that you don’t lose track of the change. Change the border-bottom and border-top entries to 0.

    Please let me know if you need any further assistance with your site.

    .main-navigation ul.nav-menu,
    	.main-navigation div.nav-menu > ul {
    		border-bottom: 1px solid #ededed;
    		border-top: 1px solid #ededed;
    		display: inline-block !important;
    		text-align: left;
    		width: 100%;
    	}
    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Nobody’s going to judge your site, well at least nobody who is here to help out and those people get zapped away with my lazer gun (hypothetically).

    So, you have this in your Child Theme style.css file:

    .main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul {border-bottom: 1px solid #ececec;border-top: 1px solid #ececec;}

    Do you know what you need to do to get rid of the border? It’s probably in the original stylesheet too, so you can’t just remove that line in your Child Theme style.css file.

    Thread Starter rufi0o

    (@rufi0o)

    Nevermind I got it solved using your previous method of firebug then pasting in child theme style.css and adjusting.. Thanks for suggesting this great tool Andrew

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Uh someone got there before me ?? @apconsulting, sorry your post was caught by the spam filter and I’ve just removed it (from the filter), but you’re quick and got there before me ?? Keep it up ??

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘thin grey lines above and below menu bar’ is closed to new replies.