SP Page Builder Menu - Height With Mobile - Question | JoomShaper
Black Friday sale is live with flat 50% OFF. Sale ends soon! Grab your deal now!

SP Page Builder Menu - Height With Mobile

GS

George Sickler

SP Page Builder 2 years ago

I am using j directory that uses sp page builder, I have it updated with joomla 4 and page builder 4.

I disabled the search module in the menu header, so now when the website is visited, the menu header has extra space that is where the search item should be.

I need the menu header thinner like it is when it is on a computer. Is this possible?

https://postimg.cc/jnvtDrGH

www.armstrongaircolorado.com

0
1 Answers
Paul Frankowski
Paul Frankowski
Accepted Answer
Senior Staff 2 years ago #110550

Hi George,

It's small problem from your template styles, it's becuase that CSS is used also on mobile view

.jn-user-menu {
  float: right;
  margin-left: 35px;
  display: block;
  height: 70px;
  line-height: 70px;
}

So in theory you should ask template developer to fix it for all users, but .... here is small tip how you can fix it using Custom CSS:

@media screen and (max-width: 680px) {
.jn-user-menu { height: auto; line-height: 1;}
}
0