Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #202416

    I’m having an issue with the logo, main “Full-width Slider” section on the home page, and the gallery being formatted correctly on an iPhone.

    I’m still in the building process as you can tell, but the full-width image rotator is tiny on an iphone…

    In reading other posts in this forum, I’ve modified the logo size and the spacing between the gallery items using the following styling code:

    #header_main .container, .main_menu ul:first-child > li a {
    height: 85px !important;
    line-height: 85px !important;
    }
    #main {
    padding: 125px !important;
    }
    .logo img {
    height: 85px !important;
    max-width: 400px !important;
    }
    .logo {
    max-width: none !important;
    }

    .grid-entry .inner-entry {
    margin-right: 20px;
    margin-bottom: 20px;
    }

    @media only screen and (max-width: 767px) {
    .responsive .logo {
    height: 60px;
    }
    }

    Any help you can offer would be much appreciated!

    Eric

    • This topic was modified 10 years, 10 months ago by EMS4HIM.
    #202418

    The homepage also won’t do a “full-width” slider, they’re staying boxed for some reason. It used to – I guess something in the custom CSS I added is changing that?

    #202615

    Hi!

    Please deactivate all active plugins and check if that helps.

    Best regards,
    Yigit

    #202662

    All plugins are deactivated. The only one I had installed was a Google Maps plugin to show a map on the contact page. There are no other plugins installed, nor active.

    Do you think that the custom CSS code is causing the problem?

    Is there additional code I can add that may force the fix?

    Eric

    #202675

    Hi!

    This css is causing all your issues:

    #main {
    padding: 125px !important;
    }

    The main div is the wrapper for all your content and adding in all that padding is causing things not to be full width and be entirely too small on mobile layouts.

    Cheers!
    Devin

    #202744

    Thank you! That fixed the mobile layout. Is there a way to make the main “fullwidth slider” images on the home page be taller on the mobile site, but not on the normal browser?

    They just look so dinky on the mobile site.

    Thanks,

    Eric

    #202745

    Also – is there a way to keep the logo from shrinking down when the page scrolls down? or let it shrink but keep it centered vertically in the space?

    Thank you guys for your prompt attention to these questions! This site is for a Christmas present so I really appreciate it!

    Eric

    #202750
    This reply has been marked as private.
    #202846

    Hey!

    You can experiment with this css modification to increase the height of the slider images on mobile view.

    @media only screen and (max-width: 767px) {
    .av_slideshow_full li img {
    border-radius: 0px;
    min-height: 200px;
    min-width: 500px;
    margin-left: -200px;
    }
    }

    Regards,
    Ismael

    #203185

    Yeah that makes them look funny? is there a way to keep the images centered vertically but still increase their height (mobile version only)?

    Also – The main header with logo (on a normal web browser) doesn’t shrink in size like the logo does….

    Thanks

    Eric

    #203387

    Hi!

    Please add following code to Quick CSS as well

    .logo img, .logo a, .logo { max-height: 85px!important; }

    I am not sure if i understood image question clearly. Can you elaborate and/or post a screenshot of what you would like to achieve?

    Cheers!
    Yigit

    #207263
    This reply has been marked as private.
    #207281

    Hey!

    You can add this on your custom.css or Quick CSS to move the caption more to the right:

    @media only screen and (max-width: 479px) {
    .responsive #top .slideshow_caption {
    left: 150px;
    }
    }

    Cheers!
    Ismael

    #214617
    This reply has been marked as private.
    #214670

    Hi!

    Please add this at the very bottom of the code you posted above:

    @media only screen and (max-width: 767px) {
    .responsive .logo {
    height: 85px;
    width: 400px !important;
    position: relative;
    left: -60px;
    }
    }

    The logo should look like this on mobile view:

    Cheers!
    Ismael

Viewing 15 posts - 1 through 15 (of 15 total)
  • The topic ‘Mobile site not formatted correctly…’ is closed to new replies.