Below the masonry-slider I get a lot of space. How can I reduce this space?
AS Templates
POSTED: 2015-08-13
Hello JOSBAKKER,
Please see tmpl.default.css file the following class (line 1454):
.masonry_gallery {
min-height: 700px;
}
Regards, AS Team.
josbakker
POSTED: 2015-09-03
I'm triying to expand the width of the sub menu. I know I have to change the following line:
#as-menu ul.as-menu ul {
width: 191px;
}
But something override it? I can't find the problem. Do you have any suggestions?
AS Templates
POSTED: 2015-09-03
Hello JOSBAKKER,
You can edit it here:
Module Manager -> Main menu -> Menu Options -> Submenu Width
Regards, AS Team.
josbakker
POSTED: 2015-09-04
Shoot, that was a lot easier then I thought, thanks :-)
One last question: I want the module with the masonry gallery disabled when I view the site on a mobile Phone and active when viewed in a computer. How can I do this?
Get an access to all 94 items designed and developed by AS Designing team plus all the future items
which will be released over the course of your club subscription.
Price starting from $59.00
Please see tmpl.default.css file the following class (line 1454):
.masonry_gallery {
min-height: 700px;
}
Regards, AS Team.
#as-menu ul.as-menu ul {
width: 191px;
}
But something override it? I can't find the problem. Do you have any suggestions?
You can edit it here:
Module Manager -> Main menu -> Menu Options -> Submenu Width
Regards, AS Team.
One last question: I want the module with the masonry gallery disabled when I view the site on a mobile Phone and active when viewed in a computer. How can I do this?
Add following code in media.768.ccs file
.masonry_gallery
{
display: none;
}
Regards, AS Team.