By Edgar on Saturday, 27 June 2015
Posted in Wanderers
Replies 5
Likes 0
Views 1K
Votes 0
Hello,

How can I do if want to make appear some modules when the size of the screen is small and at the opposite make disappear some modules ?

By example, I have some banners in position-7 and when I reduce my screen, banners below position-1 and are very large and not adapted.

Thanks a lot for your help,

Edgar
Hi Edgar,

I am really sorry for the delay of this reply as it is a weekend for us here.

Can you provide us with your Joomla backend and FTP access so we can better have a look?
·
Saturday, 27 June 2015 17:09
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello,

Thanks for your answer.

I add the details int this post.

So the issue is that I create a big vertical banner in position-7. It works great but when I resize my screen to small screen, the banner appears below position-2, in vertical where as in this case I would rather put a horizontal banner.

Thanks for your help,

Edgar
·
Saturday, 27 June 2015 19:52
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Edgar,

Sorry for late reply to this,

Unfortunately that was not possible to achieve this, because the image itself already vertical style -> http://parcoor.com/images/banners/logo_cc_60.png . it can't auto rotate to left or right.
·
Monday, 29 June 2015 15:33
·
0 Likes
·
0 Votes
·
0 Comments
·
Ok. However I don't especially want it rotates automatically. I would rather to have the possibility to make dissapear a module when it's on small screen. And at the opposite make appear another module when it's small screen.
Is it possible ?

If not possible, is it possible to create a position who doesn't appear on small screen ?

Thanks a lot for your help,

Edgar
·
Monday, 29 June 2015 16:12
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Edgar,

Sorry for late reply to this,

I've applied this following css code in your custom.css file

@media (max-width:480px)
{
.col-md-3 .panel-default {
display:none !important;
}
}


it should disappear when you view on mobile mode.
·
Monday, 29 June 2015 22:54
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post