Left menu only optional

Locked
vished
Posts: 479
Joined: 02 Feb 2014, 17:38

16 Jul 2016, 09:28

Dears,

I would like to implement the left menu only optional.
So I want to have in my database a flag to enable / disable the left menu (this is not the question here)

How can I disable the menu button also for Desktop version? So I have only the "Menu" Button like in the mobile version.
Thank you.
PF 8.0

vished
Posts: 479
Joined: 02 Feb 2014, 17:38

25 Jul 2016, 22:54

Any ideas regarding this topic?
PF 8.0

mert.sincan
Posts: 5281
Joined: 29 Jun 2013, 12:38

28 Jul 2016, 13:43

I think you can use @media queries;

Code: Select all

/* Large desktop */
@media (min-width: 961px){
	
}
 
@media (min-width: 961px) and (max-width:1200px){
	
} 
 
/* Portrait tablet to landscape and desktop */
@media (min-width: 640px) and (max-width: 960px){

}

/* Landscape phone to portrait tablet */
@media (min-width:480px) and (max-width: 640px) {	

}
 
 
/* Portrait phones and down */
@media (min-width:320px) and (max-width: 480px) {

}

Locked

Return to “Rio”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 1 guest