Archived topic
want to customize slideout menu
3 replies · Started by Marcela on August 26, 2021
I am using generatepress theme here(https://www.gryffin.com/evoximages/) credentials details in private details want to use slideout menu i want to make this menu same as this site https://www.evoximages.com/ first of all i want to get rid of overlay opacity if i change the opacity 0 its not showing cross button of the menu. Please guide me how can i get rid of overlay its just slide the main area and show menu on right same as on evoximages.com and no opacity.
Please guide me
Try this CSS to remove overlay:
.slideout-overlay {
background-color: transparent;
}
And below CSS for the content slide effect:
body.slide-opened .site {
transform: translatex(-250px);
transition: all 0.2s ease;
}
body:not(.slide-opened) .site {
transform: translatex(0);
transition: all 0.2s ease;
}
Let me know :)
Thanks a Lot its working. Thank you very much for your prompt response.
You are welcome Marcela :)