-
AuthorPosts
-
December 31, 2013 at 6:52 pm #204107
Hey guys,
So I centered the logo and main menu to fit UNDER the logo. It renders fine on my desktop…however, when viewing on my IPAD the main menu is butted up to the right and the tabs just stack….anyway to fix this?See snap: http://dev.lorenasarbu.com/ipad.jpg
Thanks!
JDecember 31, 2013 at 7:35 pm #204126Hi Js-interactive!
We’ll need to see the site live and inspect what you’ve done so far to see if we can assist with a fix here.
Cheers!
DevinDecember 31, 2013 at 7:49 pm #204135This reply has been marked as private.December 31, 2013 at 7:52 pm #204137This reply has been marked as private.December 31, 2013 at 8:13 pm #204143This reply has been marked as private.January 2, 2014 at 2:46 am #204345That is a bit rough. The way you’ve got it to this point is kind of a mess.
I would recommend re-starting and instead of doing anything with negative margins or absolute positioning on the logo/menu.
For a quick fix you could change the logo from being position: relative to absolute since the weight of it is actually what is pushing your menu over (since its still inside the div) but you’ll still need to do another media query for the tablet view to position the menu or at least reduce some padding/margins so it fits better.
January 2, 2014 at 2:53 am #204350Hi!
Do what Devin said or try to add this at the very bottom of custom.css or Quick CSS:
.main_menu { position: absolute; margin: 0; right: 0; bottom: 0; }
Best regards,
IsmaelJanuary 2, 2014 at 3:53 pm #204505This reply has been marked as private.January 2, 2014 at 4:20 pm #204517Hi!
Please add following code to Quick CSS as well
.main_menu { right: 30%; top: 42%; } .main_menu .menu ul { top: 65%; }
then you can increase the font size with following code
.main_menu ul:first-child > li > a { font-size: 16px; }
Regards,
YigitJanuary 2, 2014 at 5:31 pm #204541This reply has been marked as private.January 2, 2014 at 5:37 pm #204543Hi Justin!
Please add following code to Quick CSS as well
.logo, .logo a, .logo img { max-width: 357px!important; }
This should fix it
Best regards,
YigitJanuary 2, 2014 at 5:41 pm #204549This reply has been marked as private.January 2, 2014 at 5:42 pm #204550This reply has been marked as private.January 2, 2014 at 7:11 pm #204604Hi!
Please try adding following code to Quick CSS
@media only screen and (min-width: 1340px) { .main_menu { right: 22%; }} @media only screen and (min-width: 1140px) and (max-width: 1339px) { .main_menu { right: 15%; }} @media only screen and (min-width: 990px) and (max-width: 1139px) { .main_menu { right: 9%; }} @media only screen and (min-width: 786px) and (max-width: 989px) { .main_menu { right: -7%; }}
and remove right: 30%; from the first the code i posted here https://kriesi.at/support/topic/off-centered-menu-ipad/#post-204517
Cheers!
YigitJanuary 2, 2014 at 7:21 pm #204620This reply has been marked as private.January 2, 2014 at 7:25 pm #204624Hi!
These are for screen width starting from 1920px down to 786px. Then menu switches to mobile menu. Menu font size was smaller previously that is why you should remove this line right: 30%; as i mentioned in my previous post.
After applying the code, please flush browser cache and refresh your page a few timesRegards,
YigitJanuary 2, 2014 at 7:26 pm #204627This reply has been marked as private.January 2, 2014 at 7:29 pm #204629This reply has been marked as private.January 2, 2014 at 7:29 pm #204631Hi!
Have you flushed browsers cache on your ipad? I do not have a chance to check your website on an actual ipad but when i resize the window menu looks centered at all sizes
Regards,
YigitJanuary 2, 2014 at 7:37 pm #204639This reply has been marked as private.January 2, 2014 at 7:46 pm #204644Hi!
1)You may need to adjust values i posted here https://kriesi.at/support/topic/off-centered-menu-ipad/#post-204604 to center it perfectly. Increasing the values will move the menu to left
2)Please add following code to Quick CSS as well#header_main { margin-bottom: 10px; border-bottom-style: none; } .fixed_header #main { padding-top: 100px; }
Cheers!
YigitJanuary 2, 2014 at 7:59 pm #204653This reply has been marked as private.January 2, 2014 at 10:54 pm #204723Hey!
You can simply add Fullwidth Masonry element to your page and choose to display Perfect Manual Masonry. You can choose which posts to display in Portrait or Landscape mode by adding “landscape” or “portrait” tag in the post
Regards,
YigitJanuary 2, 2014 at 11:59 pm #204772This reply has been marked as private.January 3, 2014 at 12:17 am #204783Hey!
No, you are going to need to use a plugin for that. You can try using this plugin http://wordpress.org/plugins/socialize/
Regards,
YigitJanuary 3, 2014 at 1:00 am #204802This reply has been marked as private.January 3, 2014 at 2:09 am #204809Hi!
You are not choosing Perfect Manual Masonry and you are choosing Perfect Automatic Masonry. Do you mind creating a temporary admin login and post it here privately? I can create an example for you
Best regards,
YigitJanuary 3, 2014 at 2:20 am #204811This reply has been marked as private.January 3, 2014 at 2:49 am #204819Hi!
Please add following code to Quick CSS as well
.image-overlay .image-overlay-inside:before { content: url(/wp-content/uploads/2014/01/LSI-emblem.png);
and please go to Enfold theme options and do not choose a page in “And where do you want to display the Blog?”. I would do the changes myself but you have not set the user role as administrator
Regards,
YigitJanuary 3, 2014 at 3:21 am #204830This reply has been marked as private. -
AuthorPosts
- The topic ‘Off-centered Menu IPAD’ is closed to new replies.