-
AuthorPosts
-
September 9, 2014 at 10:21 pm #316125
Hey guys,
just need a hand wqith how this page is rendering on the mobile device.
Custom work was done to the header:
#top #header_meta a, #top #header_meta ul, #top #header_meta li, #top #header_meta .phone-info {color: #333333;border-color: red;}
/*#top #wrap_all #header_meta .phone-info {position: absolute;right: -15px;top: 40px;}*/See how it’s affecting the mobile.
The bigger challenge is with how the content within the COLOR SECTION is rendering on the phone. It doesn’t seem like the FORM wants wrap onto it’s own row. It’s butting up against the image on the mobile phone. Is this because the defined regions 2/3 and 1/3 are set within a color section? Also know that this was done in order to define a section ID that removes margin space from the 2/3 column and the 1/3 column so that we have one clean horizintal layout with the image on one side….and the form to the right of it with a colored background (red).
Is there another approach you’d recommend to this? The idea is to have a slideshow to the left, and the form to the right…with the colored background..
Thanks
September 11, 2014 at 1:25 am #317058Hi Justin!
This code is overriding the normal responsive behavior of the Enfold columns:
#home div.av_one_fourth {margin-left:0%!important;width:26.5%!important;background:#c51230;min-height:404px!important;} #home div.av_three_fourth {margin-left: 0%!important;width:73.5%!important;background:#c51230;}
I’d suggest removing the width values:
#home div.av_one_fourth {margin-left:0%!important;background:#c51230;min-height:404px!important;} #home div.av_three_fourth {margin-left: 0%!important;background:#c51230;}
Best regards,
JosueSeptember 11, 2014 at 3:50 am #317120This reply has been marked as private.September 11, 2014 at 3:58 am #317121This reply has been marked as private.September 11, 2014 at 4:24 am #317129Yeah looks better now, add this too so the fields get some space:
.avia_ajax_form input { min-width: 0 !important; }
Cheers!
JosueSeptember 11, 2014 at 3:08 pm #317426This reply has been marked as private.September 11, 2014 at 7:38 pm #317602Hey Justin!
I’d suggest including these in the actual menu and setting them a class of “noDesktop”, then with CSS:
.noDesktop { display: none; }
Cheers!
JosueSeptember 12, 2014 at 6:01 pm #318232This reply has been marked as private.September 12, 2014 at 7:00 pm #318266Hi!
You need to enable them in “Screen Options” first.
Regards,
JosueSeptember 12, 2014 at 10:06 pm #318341This reply has been marked as private.September 12, 2014 at 11:47 pm #318354Hi!
Code should be:
@media only screen and (min-width: 767px) { .noDesktop { display: none; } }
Best regards,
JosueSeptember 14, 2014 at 1:45 am #318686Thank you Josue!
September 14, 2014 at 2:16 am #318692You are welcome :)
-
AuthorPosts
- You must be logged in to reply to this topic.