To remove the border around the main nav area you need to edit stylesheet_new.css.
From this:
#navColumnOne {
padding: 0.5em;
border-left: 1px solid #cccccc;
}
#navColumnTwo {
padding: 0.5em;
border-right: 1px solid #cccccc;
}
To This:
#navColumnOne {
padding: 0.5em;
/ border-left: 1px solid #cccccc;/
}
#navColumnTwo {
padding: 0.5em;
/ border-right: 1px solid #cccccc;/
}
All the other borders are in stylesheet_original.css and I just added /* before and / after every place it said border. When you add / before and */ after any line it will exclude that command. It is better to do it this way so if you change your mind you can just remove the /**/ and you can use that line again without having to remeber what you deleted.
Hope this helps.
Dana
:smile: