Menu Bar

Locked
tony.herstell
Posts: 214
Joined: 29 Nov 2011, 00:40

15 Jul 2016, 06:01

I wanted to add "stuff" to the menu.

I used the showOnDesktop/showOnMobile to try to cope with the responsiveness.

The problem is that the menu has three states...

can you add in showOnMenuDesktop/ShowOnMenuTablet and ShowOnMenuMobile?

To see the current stuff-up (on my part):
http://www.dressageacademy.co.nz

Then shrink the browser down to when the menu "pops" to tablet size...

Cheers Guys.
PF12+, Quarkus 3.2+ (CDI, JPA etc.), JSF Bridge (MyFaces 4.0.1)
Dont forget the classifier:

Code: Select all

   ...primefaces
  <classifier>jakarta</classifier>
     ... theme
  <classifier>jakarta</classifier>

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

21 Jul 2016, 13:00

We use @media queries for Table, Mobile and Desktop Modes. Maybe, these queries can help to you for your responsive issues.

Code: Select all

/* MEDIA QUERIES **************************************************************************************************************** */
@media (min-width: 1201px) {
    
}

@media (min-width: 641px) {
    
}

@media (min-width: 641px) and (max-width: 1200px) {
    
}
  
/* Landscape phone to portrait tablet */
@media (max-width: 640px) {
	
}
 
/* Portrait phones and down */
@media (max-width: 480px) {
	
}
Also, I see a mistake on your site. "Dark Horse" image in menu isn't displayed correctly on slim menu(Tablet or slim mode on Desktop). Maybe, you can try;

Code: Select all

@media (min-width: 641px) and (max-width: 1200px) {
    #layout-menubar > div > img {
          height: 20px !important;
    }
}

tony.herstell
Posts: 214
Joined: 29 Nov 2011, 00:40

21 Jul 2016, 22:16

Thx for your support guys.
:)
PF12+, Quarkus 3.2+ (CDI, JPA etc.), JSF Bridge (MyFaces 4.0.1)
Dont forget the classifier:

Code: Select all

   ...primefaces
  <classifier>jakarta</classifier>
     ... theme
  <classifier>jakarta</classifier>

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

25 Jul 2016, 15:13

You're welcome!

Locked

Return to “Sentinel”

  • Information
  • Who is online

    Users browsing this forum: No registered users and 22 guests