• Resolved swany

    (@swany)


    Andrew, I can’t seem to get my mobile site inflatable-service.com to line up correctly on some pages. The major problem I have are the the bullet lists I created along with their titles. I created them in Site Origin and can’t get them to layout properly like I have them on my desktop version. On the Service page their running off the page.

    Didn’t know if you could take a look. Also is there a way to adjust the text size just for the mobile site?

    Thanks again,

    Swany

Viewing 12 replies - 1 through 12 (of 12 total)
  • Theme Author Andrew Misplon

    (@misplon)

    No problem. I’m sure we can resolve. I can’t currently view your site. Please, can you confirm the link I should go to? Thanks.

    Thread Starter swany

    (@swany)

    Theme Author Andrew Misplon

    (@misplon)

    Great, the site is loading. Ok, so home page looks ok. I’m testing manually with an iPhone 6. Are you perhaps testing on a smaller screen? Is there another page I can check?

    Second question:
    Are there any particular elements you want to be smaller when loaded on mobile?

    Thread Starter swany

    (@swany)

    The Service & Rescue Pages need some help. I was wondering if the h1 tag and if the name of the company in the header could be a little smaller so it is on only one line.
    I’m looking at the site on a Samsung 5 screen so it could be a bit smaller that the iPhone.

    Theme Author Andrew Misplon

    (@misplon)

    Thanks ??

    Try this. Edit the widget in question and remove the CSS you’ve added there. Instead, insert a new CSS class name in the Class field provided:

    custom-columns

    Next, go to Appearance > Customize > Additional CSS or your own Custom CSS plugin and insert:

    @media (min-width: 1200px) {
    	.custom-columns {
    		height: 230px;
    		-webkit-column-count: 3;
    		-moz-column-count: 3;
    		column-count: 3;
    		display: inline-block;
    	}
    }

    The CSS you’re using isn’t responsive. The above change basically drops it below 1200px so the layout can return to normal. You could add additional break points and adjust the columns and height etc. but this is the easiest way to proceed.

    I’ll try to assist further with the responsive changes requested tomorrow. Cheers ??

    Thread Starter swany

    (@swany)

    OK. I’ll give it a try
    Thanks

    Theme Author Andrew Misplon

    (@misplon)

    It should do the trick. Chat further tomorrow. I’ll send a snippet or two to customize the additional elements we’ve discussed. Cheers ??

    Theme Author Andrew Misplon

    (@misplon)

    Hi. For the other two items you asked about, you can try the following:

    @media (max-width: 768px) {
    	.site-header.scale.scaled .site-branding h1.site-title {
    		font-size: 24px;
    	}
    	.is-stuck .site-description {
    		display: none;
    	}
    	h1 {
    		font-size: 20px;
    	}
    }
    Thread Starter swany

    (@swany)

    Andrew, the CSS fixed the columns. I added the CSS for the font size changes and can only get the site description to respond. The site-title size won’t change no matter what size I use.

    Theme Author Andrew Misplon

    (@misplon)

    Thanks for your feedback. Please, can you clear WP Super Cache and then deactivate it while you’re still developing the site. Clearing it before deactivation is important. We’ll then be able to see what’s happening. Right now, the Custom CSS I provided isn’t showing.

    Thread Starter swany

    (@swany)

    OK. Done

    Theme Author Andrew Misplon

    (@misplon)

    Sorry for missing this. The CSS provided only targets the site title font size once it goes sticky. If you want to target it at the top of the page, you’d need to add:

    @media (max-width: 768px) {
    	.resp .site-header .site-branding h1.site-title {
    		font-size: 25px;
    	}
    }

    And then adjust the value as required.

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Mobile Site Layout’ is closed to new replies.