Search found 5 matches

by mecinta
Wed Nov 30, 2022 6:20 am
Forum: Community Help & Support
Topic: Installation impossible without an readable error
Replies: 7
Views: 2207

Re: Installation impossible without an readable error

The last time I experienced this error I got mysql error 1071 - Specified key was too long; max key length is 1000 bytes The error was gone after I changed the database collation to utf8mb4_unicode_ci It was discussed here. https://stackoverflow.com/questions/8746207/1071-specified-key-was-too-long-...
by mecinta
Sun Jan 16, 2022 1:37 pm
Forum: Community Help & Support
Topic: Navbar Hover and Dropdown Menu
Replies: 0
Views: 7598

Navbar Hover and Dropdown Menu

Currently the navbar links whether in admin page or shop page must be clicked in order to dropdown and display the menu. Here is a CSS trick to dropdown the menu by simply hovering over the navbar link items: .dropdown-menu a:hover { background-color: #ddd; } .dropdown:hover .dropdown-menu { display...
by mecinta
Thu Jan 13, 2022 1:27 am
Forum: Community Help & Support
Topic: Reduce height of boxes in the Categories column
Replies: 4
Views: 2170

Re: Reduce height of boxes in the Categories column

You can add a css style to the file templates/override/static /user.css. Below is an example:
.bm-categories .list-group {
max-height: 200px;
overflow-y: auto;
}


.bm-categories .list-group .list-group-item {
min-height: 50px;
}
by mecinta
Thu Dec 30, 2021 11:51 pm
Forum: Community Help & Support
Topic: Making another Navbar for Header
Replies: 17
Views: 6621

Re: Making another Navbar for Header

This method will probably achieve the same result as you require.
First, make a copy of template_top.php and save it as a override template. Move a line as shown in the picture attached.