Dear @phyllmag
Cool Website :)
You need to look into the :hover css function
:hover
http://laytheme.com/documentation.html#custom-css-styling
https://www.w3schools.com/cssref/sel_hover.asp
Right now we have the NAV contents set to
display:none
When we hover we want to set the contents to i believe
display: block
[image: 1597249387027-screen-shot-2020-08-12-at-6.21.12-pm.png]
A quick example would be:
.second_menu:hover{
display: block;
}
is this what you are looking for?
let me know :)
Best
Richard