-2
I’m trying to do almost the same as what was described in this other question: Arrow in menu with CSS only.
But with one small difference: when you click the button that is marked as selected. Show that she’s on that page, but along with the highlighted arrow.
And like this now, and I want you to stay in this other image, that the arrow is in the middle, and I can’t do that.
Code
nav a{
text-decoration: none;
padding: 8px 8px 8px 8px;
color: #ffffff;
position: relative;
}
nav a:hover:before{
width: 0;
height: 0;
border: 10px solid transparent;
border-top-color: #888888;
content: "";
bottom: -20px;
position: absolute;
}
You did the MENU, now all that remains is to show the arrow when you are on the page of that Link in the MENU ?
– Diego Souza
That, but I can’t
– Thayna
wanted to make the arrow stand out when you were on a page
– Thayna
What is the code of the arrow ? Put it there.
– Diego Souza