Jump to content

Archived

This topic is now archived and is closed to further replies.

studyworldglobal

Customization for Mobile

Recommended Posts

studyworldglobal

We are working on a three column layout with DMS

 

Location: skilllearner.com

 

The order of display in mobile site seems to be logo section - sample nav - Column 1 - Column 2 - Column 3 etc.

 

But we would like not to show column 1 in mobile site or at-least show it after column 3 or as last section.

 

How can this be done.

 

That is having things appear in following order in mobile site alone...

 

logo section - sample nav -  Column 2 - Column 3 etc.

 

or

 

logo section - sample nav - Column 2 - Column 3 etc.- Column 1 

Share this post


Link to post
Share on other sites
Aires

Hi, studyworldglobal

 

Give this a try

 

/* the first column with not be visible on screens smaller than 768px*/

@media only screen and (max-width: 768px) {
#plcolumnudad88 {
display:none;
}
}
 
~Aires

ndTgvai.jpg

Visit iheartpagelines.com for the latest tutorials on PageLines related products.

 

Share this post


Link to post
Share on other sites

×