Gang,
I have spent hours trying to figure out why there is a space between the menu bar and the image scroller. I am trying to get both features to meet flush but just cant seem to figure this one out. I have been messing with the margin attribute in my CSS file but nothing I do seems to work. Your help with this would be greatly appreciated. Thank You. Ken
Good morning Ken,
Could you provide some code or a live link to your website?
Kind regards,
LC.
Simply remove the default margin for your main ul (the direct descendant of nav)
Select it using the following CSS code below, or giving that specific ul a class or id (this way you target only the ul causing you trouble).
nav > ul {margin: 0}