Best Premium and Free WordPress Themes › Forums › Infinite Photography Pro › Problems in setting up the Theme
Tagged: categories, header, previous next pop up
- This topic has 1 reply, 2 voices, and was last updated 3 years, 10 months ago by
acmesupports.
-
AuthorPosts
-
July 25, 2019 at 11:12 pm #65285
Marco Benini
ParticipantHi.
I uploaded from the free version to Pro Version but I still have two problems (website: http://www.occhidigattofoto.it)
1) the header image, that displays correctly on the home page, becomes square and big on android mobiles. And becomes totally blurred (like over-zoomed) on iPhone mobiles, definitely messed. Image is sized as suggested, 1920×620.
2) what is the correct CSS code to not display categories of the post at the end of the post?
3) Despite the fact I unchecked “enable previous-next pop up” I still see the two feature images of previous/next post at the end of the post. How can I delete this option, so that I don’t see any more “previous/next” image?
Thank you
MarcoJuly 26, 2019 at 12:24 pm #65337acmesupports
ModeratorDear Marco,
Here are the answers to your queries:
1. Such issues are common for the iOS devices as Safari browser still does not support background-attachment: fixed; property. But it should not appear on the Android devices.
But you can add the following code in Additional CSS for removing the blurry image from all mobile devices.
Appearance > Customize > Additional CSS@media(max-width:767px){ .inner-header-image{ background-attachment: scroll !important; } .slider-feature-wrap .at-front li{ height:80vh !important; } }
(Note: it will fix header image issue in all mobile devices, For height issue please change the height value to adjust as per your requirement.)
2. For removing categories please use the following CSS
Appearance > Customize > Additional CSS.cat-links{ display:none !important; }
3. The option works fine. We suggest you uninstall the unnecessary plugins from your admin panel and check again.
Best Regards!
-
AuthorPosts
- You must be logged in to reply to this topic.