Several questions

10 replies · opened Nov 30, 2018

Iitonic99Nov 30, 2018

Hi!
https://www.ferienwohnung-mair.at
I'm working on a small site right now and need help with the following issues:

Mobile issues:

  1. When I check the page on my phone the logo does not scale to an appropriate size. How can I fix this?
  2. How can I reduce the right side padding for the 2 flags to keep them on the right side on mobile size? Can't find it.
  3. How can I center the upper footer section (logo and address) only in mobile view?

https://www.ferienwohnung-mair.at/de/ferienwohnung-apartment.php
On this page, I have 2 kinds of galleries below. I have not decided yet which one I'm going to use.

  1. Can I switch them to "full-width" somehow?
    (like the of in the middle of the page here: http://themes.semicolonweb.com/html/canvas/index-corporate.html)
  2. Is it possible, when I only use single images (no video, slider, etc) to have arrows to go from one image to the next?

Thanks in advance

SSemicolon WebSTAFFDec 2, 2018

Hello,

  1. The Height of the Logo Image appears to be customized. Currently, you can only increase the Height of the Logo if you also increase the Height of the Header. Auto Height is not supported. To increase the Header's Height use this CSS Generator: http://support.semicolonweb.com/header-height-css-generator/ .

On Mobile, use the following CSS Code:

@media (max-width: 991.98px) {
	#header, #header-wrap, #logo img { height: 100px; }
}
  1. We have just checked this out for you on Mobile Devices and it appears to be working fine for us. Let us know if you are facing further issues with this.

  2. You will need to use the Media Queries or the Bootstrap Grid: http://getbootstrap.com/docs/4.1/layout/grid/ to achieve the Responsive Layout you need. Unfortunately, customizations are currently out of the scope of included Item Support.

  3. This is Definitely Possible. Simply close the .container DIV before the Gallery and Open it again after the Gallery. Example:


	...

Gallery Codes

	...
  1. This is Definitely Possible. Simply add the data-lightbox="gallery" Attribute to the Main Container and then replace all the data-lightbox="image" with data-lightbox="gallery-item".

This will definitely work fine. Hope this Helps!

Let us know if we can help you with anything else or if you find any further issues.

Iitonic99Dec 3, 2018

Hi,
thanks so much for your response!
I still have the problem with the Logo on mobile. I placed the code you gave at the end of the Logo section in the style.css but it doesn't do anything.
Maybe I misunderstood, but if you look at the screenshot I attached, you see what I mean.
(LG G4 / Android 6 / Firefox)

I also point out what I mean in question 2 above. On mobile there seems to be more space from the icons to the right than on desktop.

Thank you!

Iitonic99Dec 3, 2018

Had to reduce the filesize of the screenshot. so here goes....

SSemicolon WebSTAFFDec 9, 2018

Hello,

Thanks for your Patience!

  1. Always use Custom CSS codes inside the css/custom.css File to avoid any headaches during the Updates. Follow the Documentation > Start > Customization Section on how to use the css/custom.css File.

  2. Consider using the following code:

@media (max-width: 991.98px) {
	#top-account {
		right: 0 !important;
	}
}

This should definitely work fine. Hope this Helps!

Let us know if we can help you with anything else or if you find any further issues.

Iitonic99Dec 11, 2018

Thank you, that helped!

2 more things:
At the screenshot attached you can see the large empty green space on the home/startpage.
Is there a possibility to make these containers adapt to height on mobile?

The page is very sluggish on my phone which I don't usually experience with other sites. It's ok with all sites but the homepage.
My guess is, that the kenburns effect is causing it because the background animation is stuttering tremendously.
How can I switch it off for mobile only? I guess it is not a normal media query...

Thanks.

Iitonic99Dec 15, 2018

Hello, anyone there?

SSemicolon WebSTAFFDec 16, 2018

Hello,

Thanks for your Patience!

  1. Please consider using the following code instead of the current .common-height container:

	
		
			Text
		
	
	
		
			Lorem ipsum dolor sit amet, consectetur adipisicing elit. Similique cupiditate nihil necessitatibus quas harum officiis repudiandae magnam, dolorum minima ab!
		
	

This is super flexible and modern.

  1. To disable Ken Burns on Mobile Devices, add the following setting to the Revolution Slider JS Initialization Code:
fallbacks: {
	panZoomDisableOnMobile:"on",
}

This will definitely work fine. Hope this Helps!

Let us know if we can help you with anything else or if you find any further issues.

Iitonic99Dec 18, 2018

Number 1 worked like a charm, THANK YOU!

Number 2: I don't know where to put that, or maybe I did in the wrong way.
I tried it in the Rev-slider javascript below the footer. It didn't work that way.
Thanks in advance.

SSemicolon WebSTAFFDec 19, 2018

Hello,

Your code should look like this:

tpj(document).ready(function() {

	var apiRevoSlider = tpj('#rev_slider_k_fullwidth').show().revolution(
	{
		sliderType:"standard",
		sliderLayout:"fullwidth",
		delay:9000,
		navigation: {
			arrows:{enable:true}
		},
		responsiveLevels:[1240,1024,778,480],
		visibilityLevels:[1240,1024,778,480],
		gridwidth:[1240,1024,778,480],
		gridheight:[600,768,960,720],
		fallbacks: {
			panZoomDisableOnMobile:"on"
		}
	});

	apiRevoSlider.bind("revolution.slide.onloaded",function (e) {
		setTimeout( function(){ SEMICOLON.slider.sliderParallaxDimensions(); }, 400 );
	});

	apiRevoSlider.bind("revolution.slide.onchange",function (e,data) {
		SEMICOLON.slider.revolutionSliderMenu();
	});

});

This will definitely work fine. Hope this Helps!

Let us know if we can help you with anything else or if you find any further issues.

Iitonic99Dec 21, 2018

Thanks a lot!

Have the same question, or something new?

Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.

Reply on the dashboard