This topic is locked

personalized menu

6/17/2023 4:51:20 PM
PHPRunner General questions
F
francesco author

I am looking for advice on how to personalize the menu to make it more appealing: for example I want the effect of icons and text enlarge when hovering mouse. Is it possible to do?
If you have examples of nice looking menus, please post here. Thanks very much

Sergey Kornilov admin 6/19/2023

Yes, it can be customized with the help of CSS.
See CSS examples here:
https://xlinesoft.com/phprunner/docs/customizing_styles_examples.htm
Also there are two videos that explain in depth the CSS topic:
https://www.youtube.com/watch?v=_DmMYRCUtU8
https://www.youtube.com/watch?v=yFnD38oslIc
We also talk about CSS topics often in our DevClub webinars:
https://xlinesoft.com/devclub

francesco 6/19/2023

thank you for the informations

francesco 6/20/2023

regarding to my first question, this is the css to enlarge panels in welcome page when hovering mouse:
.bs-welcome-item:hover {
-ms-transform: scale(1.5);
-webkit-transform: scale(1.5);
transform: scale(1.2);
}