-
Author
-
March 14, 2016 at 02:10 #110250RafVinParticipant
Good evening, I would like to question.
How do I shrink the menu on mobile devices as attached?
Thank you.
March 14, 2016 at 02:18 #110252RafVinParticipantThis is the attachment.
Attachments:
You must be logged in to view attached files.March 14, 2016 at 20:30 #110471RaduModeratorHi,
I cannot view your site it says fatal error memory allocation, increase your php memory limit
http://seventhqueen.com/blog/code-snippets/increase-php-memory-limit-in-wordpress.html
Let me know when you solve this
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 14, 2016 at 21:22 #110504RafVinParticipantThank you for responding and for reporting the error.
Try entering again, problem solved.
Thank you.
March 15, 2016 at 16:34 #110732RaduModeratorYou’re welcome
Have a nice week
Cheers
Radu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 15, 2016 at 16:37 #110735RafVinParticipantThank you for answering.
For the menu how do I fix
Thank you.
March 15, 2016 at 18:38 #110789RaduModeratorHi,
If i visit your site from mobile it look very different beside your attache screenshot.
See attachment
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionAttachments:
You must be logged in to view attached files.March 15, 2016 at 19:15 #110805RafVinParticipantYou know, I wanted to know how to shrink the menu on mobile devices.
Thank you.
March 16, 2016 at 14:26 #110954RaduModeratorYou can set small padding with the menu items on mobile
Add this css to wp-admin -> theme options -> general settings -> quick css
COPY CODE@media (max-width: 991px){ #header .navbar-nav li a { padding: 5px 0; } }
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 16, 2016 at 18:38 #111006RafVinParticipantThank you for answering.
It is not what I wanted. I want to change Main Menu only Height for mobile devices.
Thank you
March 16, 2016 at 21:17 #111085RaduModeratorCOPY CODE@media (max-width: 600px){ #header .navbar-nav li a { padding: 5px 0; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 17, 2016 at 13:47 #111228RafVinParticipantThank you for answering.
Even this does not work, what I want is to change the height of the navbar on mobile devices.
Thank you
March 17, 2016 at 20:06 #111356RaduModeratorHi,
COPY CODE@media(max-width:600px){ #header .navbar { max-height: 80px; } }
replace 80px with your desired height
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 18, 2016 at 19:39 #111642RafVinParticipantThank you for answering.
I do not understand why it does not work, I just upgraded to the latest Kleo version.
In addition to the reported code
© media (max-width: 990px) {
div # header {
position: fixed;
width: 100%;! important;
display: inline-block;
z-index: 99! important;
height: 100px;
}
div # main {
margin-top: 90px;
}
}
to make the sticky menu on mobile gives me much padding?Before updating the above code written work, not anymore.
How can I make it work?
Thank you.
March 21, 2016 at 16:41 #111978RaduModeratorHi,
try to paste code from here : http://pastebin.com/DTFvU8fx , div # header {} this should be without spaces around#
Cheers
Let me know
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionMarch 24, 2016 at 01:13 #112484RafVinParticipantThank you for answering.
I tried it and it does not work.
It does not work either
© media (max-width: 600px) {
# header {.navbar
max-height: 80px;
}
}
Thank you.
March 24, 2016 at 17:01 #112553RaduModeratorHi,
Please look in quick css for this
COPY CODE@media (max-width: 990px) div#header { position: fixed; width: 100%; z-index: 99 !important; height: 100px; }
Instead of 100px put your desired height/
Cheers
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
You must be logged in to reply to this topic.