Home › Forums › Basel support forum › Responsive problem
Responsive problem
- This topic has 10 replies, 2 voices, and was last updated 7 years, 3 months ago by Artem Temos.
-
AuthorPosts
-
September 26, 2017 at 1:54 pm #20277
despina.minaParticipantHello,
i have used this code for change the appearence of categories
.cat-design-default .hover-mask {
position:relative;
background:none;
bottom: 0;
left: 0;
box-shadow: 1px 1px 3px rgba(136,136,136,0);
background-color: #00a4e1;
transform: translateX(0);
-webkit-transform: translateX(0);
-moz-transform: translateX(0);
-o-transform: translateX(0);
}
Now,there is a problem with some descriptions that do no fit correctly.
For example this category it is not complete.
What should i change?September 26, 2017 at 2:33 pm #20282
Artem TemosKeymasterHi,
Seems that you have too long categories names. You can try to decrease a font size for them to make them fit the space.
Regards
September 26, 2017 at 3:01 pm #20284
despina.minaParticipantHow can i decrease the font size for categories?
September 26, 2017 at 3:22 pm #20285
despina.minaParticipantAlso,can you please help me with the menu?
In html block i have 4 elements.If i set 1/4 in column settings it does not fit.I tried also set 1/1,but the photo is very big and does not fit.
And i see that is always open in mobile(not in hover like in desktop).
Also how can i change the font color of submenu items?Now is not visible.Attachments:
You must be logged in to view attached files.September 26, 2017 at 7:23 pm #20293
Artem TemosKeymasterHere is a code to decrease the font size
div.cat-design-default .hover-mask h3 { font-size:12px; }
Currently, our mobile navigation doesn’t support dropdowns with HTML Blocks like our main mega menu.
September 27, 2017 at 8:56 am #20319
despina.minaParticipantHello,
so mega menu is not responsive?September 27, 2017 at 9:00 am #20320
Artem TemosKeymasterThere is no mega menu on mobile devices at all. As all other themes, our theme has a sidebar navigation for smaller screens. And the mega menu is hidden because it has a lot of content that can’t fit the space well.
September 27, 2017 at 9:08 am #20322
despina.minaParticipantSo,how can i create a mobile menu like in your demo?
September 27, 2017 at 9:46 am #20326
Artem TemosKeymasterYou just need to create a separate menu in Appearance -> Menus and set it to the mobile navigation location instead of the main menu.
September 27, 2017 at 10:14 am #20335
despina.minaParticipantOk,about categories,how can i set a default size for grids because now they have different sizes depending on the description?
I want to make them all in the size of large description.Attachments:
You must be logged in to view attached files.September 27, 2017 at 11:52 am #20343
Artem TemosKeymasterTry this CSS code
.cat-design-default .hover-mask h3 { min-height: 60px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
-
AuthorPosts
- You must be logged in to create new topics. Login / Register