Do you have any design examples that you’re trying to accomplish?
Hello, thanks for your reply.
When I drag my mouse over “Home(Inicio)” I would like to display an image like this screenshot (I don’t really need the frames) IMAGE
I don’t know if it’s helps but as I said, with my current theme I am able to give a css class for each menu title.
CUSTOM CSS THEME:
.image-swap:hover{
background-image:url("http://myurl.png");
overflow-wrap: break-word;
z-index:9999;
}
That’s all can I do… the image doesn’t overflow the menu and I don’t know how to fix it. IMAGE_BAD
Thank you so much @vijayhardaha
You can use ::after or ::before` and then create css for it and set the background image on that maybe that could work.
Sorry but im not an expert in CSS, you mean to do that?
.image-swap:hover::after{
background-image:url("http://myurl.png");
overflow-wrap: break-word;
z-index:9999;
}
or
.image-swap:hover::before{
background-image:url("http://myurl.png");
overflow-wrap: break-word;
z-index:9999;
}
It is not working for me, I don’t know if that is what u want me to do, sorry 🙁
No, you’ll have to set position absolute and width, height, content, z-index, top, left as well. then it will work. also need parent element position:releative.