NiceThemesMobile view – NiceThemes http://nicethemeswp.com/forums/topic/mobile-view/feed/ Wed, 23 Apr 2025 14:59:01 +0000 http://bbpress.org/?v=2.5.12-6148 en-US http://nicethemeswp.com/forums/topic/mobile-view/#post-4487 <![CDATA[Mobile view]]> http://nicethemeswp.com/forums/topic/mobile-view/#post-4487 Thu, 21 Aug 2014 13:47:34 +0000 IceTigers Hello guys,
there a two problems with the mobile view. In an other topic you wrote that the “call now” is not displayed because of space problems. But also the contact details are not displayed under the contact template. So how should my customers get my telephone number?
Problem number two: the footer nav isn’t showed in the mobile view. So it makes no sense to create diferent header and footer navigation because it’s not possible to reach the footer nav in the mobile view.

Any workarounds provided?

]]>
http://nicethemeswp.com/forums/topic/mobile-view/#post-4488 <![CDATA[Reply To: Mobile view]]> http://nicethemeswp.com/forums/topic/mobile-view/#post-4488 Thu, 21 Aug 2014 13:49:57 +0000 IceTigers Maybe you need this:

You are running the theme: Paeon
Version: 1.1.0
Your Framework version for this site: 1.1.5

]]>
http://nicethemeswp.com/forums/topic/mobile-view/#post-4489 <![CDATA[Reply To: Mobile view]]> http://nicethemeswp.com/forums/topic/mobile-view/#post-4489 Thu, 21 Aug 2014 14:10:15 +0000 Juanfra Aldasoro Hello There,

Thanks for writing. Yes, for the responsive version of the Theme, due to design decisions, there are some elements that are hidden. You can insert the telephone number in the contact page description and your users will have access to it.

These design decisions have to do with the lack of space in smaller resolutions to display the same amount of information as the desktop version. But the information is there, and it is hidden with CSS rules. You can always add some custom CSS in order to display whatever you want/need.

For example, for the contact sidebar:

@media screen and (max-width: 1024px) {
body.page-template-template-contact-php #sidebar{
	display: block;
        width: 100%;
}
}

The same applies to the footer navigation:


@media screen and (max-width: 1024px) {
#footer-navigation{ display: block; }
}

Please remember that we have certain suggestions when it comes to adding custom CSS: http://nicethemeswp.com/support/theme-docs/paeon/#custom-css

Best,
Juan.

]]>