Line under Menu
JDGS
Registered Users Posts: 34 Big grins
Hi everyone,
Any idea how I can create a grey line under the menu? (https://danielsantos.smugmug.com/)
Thank you
0
Comments
Hi @JDGS
You need to add some CSS valid for the entire website (either in a CSS box which is valid for the entire website or in the CSS of the Theme):
.sm-page-widget-nav{
border-bottom: 1px solid grey;
}
You can, of course, change the "grey" into a more defined color coding by either using rgb(X,Y,Z) with X, Y and Z between 0 and 255 or by using #ABCDEF with ABCDEF being an HEX value for the color.
Good luck
Lille Ulven
Hey @Lille Ulven ,
It worked perfectly, thanks a lot!