-
AuthorPosts
-
sirbogoff Friend
sirbogoff
- Join date:
- March 2015
- Posts:
- 80
- Downloads:
- 4
- Uploads:
- 15
- Thanks:
- 31
- Thanked:
- 1 times in 1 posts
April 16, 2015 at 4:15 pm #205588Ok, I know that PC viewing and mobile viewing are going to look different but some things just don’t ad up. For instance, the lead image is way to big on the mobile view (on my phone). Is there some way to have ths fit.
Thanks
- Ninja Lead Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
April 17, 2015 at 9:04 am #567389That is custom html module and you have to change some css style on that
Open templates/purity_iii/css/custom.css file and add new rule
@media (max-width: 767px) {
.page-masthead .container .custom img {
width: 100%;
}
}sirbogoff Friendsirbogoff
- Join date:
- March 2015
- Posts:
- 80
- Downloads:
- 4
- Uploads:
- 15
- Thanks:
- 31
- Thanked:
- 1 times in 1 posts
April 21, 2015 at 1:16 pm #567766That worked great for the left image but I do not know if you can look but the right image (spinning image) is now larger and distorted. Any ideas?
sirbogoff Friendsirbogoff
- Join date:
- March 2015
- Posts:
- 80
- Downloads:
- 4
- Uploads:
- 15
- Thanks:
- 31
- Thanked:
- 1 times in 1 posts
April 21, 2015 at 1:16 pm #732873That worked great for the left image but I do not know if you can look but the right image (spinning image) is now larger and distorted. Any ideas?
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
April 22, 2015 at 2:29 am #567814Try to change this again, it will work fine with left and right images on your site
Open templates/purity_iii/css/custom.css file
find and change
@media (max-width: 767px) {
.page-masthead .container .custom img {
width: 90%;
}
}
to
@media (max-width: 767px) {
.page-masthead .container .custom img {
width: initial;
}
}
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
April 22, 2015 at 2:29 am #732920Try to change this again, it will work fine with left and right images on your site
Open templates/purity_iii/css/custom.css file
find and change
@media (max-width: 767px) {
.page-masthead .container .custom img {
width: 90%;
}
}
to
@media (max-width: 767px) {
.page-masthead .container .custom img {
width: initial;
}
}
sirbogoff Friendsirbogoff
- Join date:
- March 2015
- Posts:
- 80
- Downloads:
- 4
- Uploads:
- 15
- Thanks:
- 31
- Thanked:
- 1 times in 1 posts
May 27, 2015 at 9:56 pm #572059Sorry about not answering there.. Life gets in the way.. That looks good except for the main image on my phone. The spinning image fits great but the Vohne Liche image (with the dog in it) is still a little big for a smart phone.. Any help would be gratefully appreciated. 🙂
sirbogoff Friendsirbogoff
- Join date:
- March 2015
- Posts:
- 80
- Downloads:
- 4
- Uploads:
- 15
- Thanks:
- 31
- Thanked:
- 1 times in 1 posts
May 27, 2015 at 9:56 pm #737099Sorry about not answering there.. Life gets in the way.. That looks good except for the main image on my phone. The spinning image fits great but the Vohne Liche image (with the dog in it) is still a little big for a smart phone.. Any help would be gratefully appreciated. 🙂
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 28, 2015 at 4:33 pm #572172@sirbogoff: Can you give me screenshot of the problem you mentioned above? I will help you to check it
sirbogoff Friendsirbogoff
- Join date:
- March 2015
- Posts:
- 80
- Downloads:
- 4
- Uploads:
- 15
- Thanks:
- 31
- Thanked:
- 1 times in 1 posts
May 29, 2015 at 12:36 am #572224sirbogoff Friendsirbogoff
- Join date:
- March 2015
- Posts:
- 80
- Downloads:
- 4
- Uploads:
- 15
- Thanks:
- 31
- Thanked:
- 1 times in 1 posts
May 29, 2015 at 12:36 am #737264As you can see the image is off the screen on the right.. Hope this helps.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 29, 2015 at 10:10 am #572275<em>@sirbogoff 475560 wrote:</em><blockquote>As you can see the image is off the screen on the right.. Hope this helps.</blockquote>
You can fix it by opening templates/purity_iii/css/custom.css file and adding new rule
@media (max-width: 767px) {
.page-masthead .container .custom img:nth-child(2) {
width: 100% !important;
}
}
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
May 29, 2015 at 10:10 am #737312<em>@sirbogoff 475560 wrote:</em><blockquote>As you can see the image is off the screen on the right.. Hope this helps.</blockquote>
You can fix it by opening templates/purity_iii/css/custom.css file and adding new rule
@media (max-width: 767px) {
.page-masthead .container .custom img:nth-child(2) {
width: 100% !important;
}
}
sirbogoff Friendsirbogoff
- Join date:
- March 2015
- Posts:
- 80
- Downloads:
- 4
- Uploads:
- 15
- Thanks:
- 31
- Thanked:
- 1 times in 1 posts
May 30, 2015 at 2:37 am #572379Tried that but it is still the same.
Ninja Lead ModeratorNinja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
June 3, 2015 at 10:59 am #572713I checked directly the templates/purity_iii/css/custom.css file
change from
td, tr td {
border-top: 1px solid rgba(221, 221, 221, 0); @media (max-width: 767px) {
.page-masthead .container .custom img:nth-child(2) {
width: 100% !important;
}
}
}
to
td, tr td {
border-top: 1px solid rgba(221, 221, 221, 0);
} @media (max-width: 767px) {
.page-masthead .container .custom img:nth-child(2) {
width: 100% !important;
}
}
AuthorPostsThis topic contains 17 replies, has 2 voices, and was last updated by Ninja Lead 9 years, 5 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
Jump to forum