Greeting for all,
I'm new to programming in Frond-End, and I'm beginning to learn how to tinker with @media to apply keying on a simple page, but what would cheating be?
I created a responsive site when the page is more than 991px in width it appears the menu, but when it has less than 991px it appears a three bar icon, and if the user wants the menu to appear below 991px it you will have to click on the icon to appear the menu, as shown in the figure below;
Menu above 991px;
Nowthemenubelow991pxwithoutclickingtheicon.
Nowthemenuwhenyouclicktheicon.
WhatIreallyneedistochangeandstriptheunderlinewhenImovethemouse,thepartofthecoderesponsibleforthiswouldbethis;
@media(max-width:991px){.menu{position:fixed;top:0;left:0;bottom:0;width:200px;display:none;background-color:#bfbfbf;border-right:1pxsolid#eee;}.menua{text-decoration:none;}.menu--exibindo{display:block;}.menu_item{display:block;line-height:3;}}
Morespecificallythispartofthecodereferringtowhatwasshownrightup;
.menua{text-decoration:none;}
Theproblemisthatthiscodeasshownabovedoesnotchangethemenu,itwastodo,IdonotknowwhereIamwrong.
IwillleavemycompletesourcecodeavailableatGitHubforfurtherclarification.
ENOUGH CLICK HERE