-
Posted in : impressivCard WP
-
I would like the full mobile version to appear on tablets. Is there some custom code I can implement to do this?
Hi, this may require more than just a few lines of code in this theme. Why do you want this, something breaks layout on tablets?
Yes, the portrait view on the iPad looks really bad – the landscape view is fine. Not sure why it’s that way – it only consist of 2 columns (sizes 8 & 4). Here is a link if you want to see for yourself http://laughoutloudvideo.com/
@ahmetsali
Why don’t you reply to my topic? Did I do/say something wrong that you don’t want to reply to my post?It looks like our “new topic notification system” on forums doesn’t work correctly at sometimes. We have not got any new topic notification on some of your topics, we will reply to your topics in a short time, sorry for the delay.
Ok no worries, I just want to be sure to have support on this point : http://www.pixelwars.org/forums/topic/about-me-page-problem-when-opening-site/
I solve the others problem.Thanks for replying !
Well, as the original poster to this thread, it sure would be nice to get a solution to the original stated problem.
Has anyone found a solution to this?Try these modifications, open
css/bootstrap.cssin a text editor,1-) On line : 84, change this
@media (max-width:767px)
to this;
@media (max-width:768px)
2-) On line : 85, change this
@media (min-width:768px) and (max-width:979px)
to this;
@media (min-width:769px) and (max-width:979px)
3- in
css/main.cssfile, between line :320 – line: 382 find every code block;(max-width: 767px)
and replace it with this;
(max-width: 768px)
That worked! Thanks!
One small thing though, the margins are huge (the content is condensed to the center of the screen on ipad).
Is there a way for me to format this without changing the view on desktop or iphone?
Thanks again.Try adding the custom css code below;
@media screen and (max-width: 768px) { .wrapper { width: 660px; } }Oops, I spoke too soon. That last adjustment completely wacked out the layout of the iphone view. Is there something I need to add now for the iphone/mobile phones?
Please help. Thanks.Try adding this custom css code;
@media screen and (max-width: 480px) { .wrapper { width: 280px; } }
The forum ‘impressivCard WP’ is closed to new topics and replies.