-
AuthorPosts
-
Jeancarlos Rodriguez Friend
Jeancarlos Rodriguez
- Join date:
- September 2014
- Posts:
- 252
- Downloads:
- 46
- Uploads:
- 29
- Thanks:
- 21
- Thanked:
- 3 times in 1 posts
October 30, 2015 at 9:39 pm #720502Hi,
I am getting a white space on the right side of the home page..
It was not happening.
Please help me.Thanks.
site is d r e v n . org
Ninja Lead
Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 2, 2015 at 7:16 am #720955Hi,
I spent lots of time to debug the problem on your site and it came from templates/ja_nuevo/css/custom.css file, you need to fix with the solution below
find and change
.ja-slideshow .container {
padding: 0px;
width: auto;
}to
.ja-slideshow .container {
padding: 0px;
width: 100%;
}Regards
1 user says Thank You to Ninja Lead for this useful post
Ninja Lead
Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 2, 2015 at 7:16 am #753461Hi,
I spent lots of time to debug the problem on your site and it came from templates/ja_nuevo/css/custom.css file, you need to fix with the solution below
find and change
.ja-slideshow .container {
padding: 0px;
width: auto;
}to
.ja-slideshow .container {
padding: 0px;
width: 100%;
}Regards
1 user says Thank You to Ninja Lead for this useful post
Jeancarlos Rodriguez Friend
Jeancarlos Rodriguez
- Join date:
- September 2014
- Posts:
- 252
- Downloads:
- 46
- Uploads:
- 29
- Thanks:
- 21
- Thanked:
- 3 times in 1 posts
November 2, 2015 at 3:24 pm #721106@ninja Lead
I thank you for all your help and support!
But that didnt work. I had edited the custom.css file from one of the post on this forum. I have deleted it and reverted it to how it was. But i did what you asked me to and it didnt work.Now i am getting some other issues.
when i open my site on my mac pro the off canvas menu shows up not the regular main menu bar on top of the site.
i have to expand my window in order for my main menu to show up… and that one shows ok, but once i expand my window even more ( when i move my window to a bigger screen my site adjusted to it. but my text on the menu goes back to a grey color. when originally needs to be black. i have edit that along time ago.As you can see in the pictures.
from 1-2-3
it supposed to look like image 2.Ive been trying to go back and think what have done to mess things up.
the only thing i have done is upgrade the template through extension manager and change the position 1, 2, 3 and 4.
I think after i changed the content in these position thats when i started to get the white border on the right side of the webpage.
I dont get this on any other page of the entire website.I thank you again for your help!
<em>@Ninja Lead 500426 wrote:</em><blockquote>Hi,
I spent lots of time to debug the problem on your site and it came from templates/ja_nuevo/css/custom.css file, you need to fix with the solution below
find and change
.ja-slideshow .container {
padding: 0px;
width: auto;
}to
.ja-slideshow .container {
padding: 0px;
width: 100%;
}Regards</blockquote>
Jeancarlos Rodriguez Friend
Jeancarlos Rodriguez
- Join date:
- September 2014
- Posts:
- 252
- Downloads:
- 46
- Uploads:
- 29
- Thanks:
- 21
- Thanked:
- 3 times in 1 posts
November 2, 2015 at 3:24 pm #753508@ninja Lead
I thank you for all your help and support!
But that didnt work. I had edited the custom.css file from one of the post on this forum. I have deleted it and reverted it to how it was. But i did what you asked me to and it didnt work.Now i am getting some other issues.
when i open my site on my mac pro the off canvas menu shows up not the regular main menu bar on top of the site.
i have to expand my window in order for my main menu to show up… and that one shows ok, but once i expand my window even more ( when i move my window to a bigger screen my site adjusted to it. but my text on the menu goes back to a grey color. when originally needs to be black. i have edit that along time ago.As you can see in the pictures.
from 1-2-3
it supposed to look like image 2.Ive been trying to go back and think what have done to mess things up.
the only thing i have done is upgrade the template through extension manager and change the position 1, 2, 3 and 4.
I think after i changed the content in these position thats when i started to get the white border on the right side of the webpage.
I dont get this on any other page of the entire website.I thank you again for your help!
<em>@Ninja Lead 500426 wrote:</em><blockquote>Hi,
I spent lots of time to debug the problem on your site and it came from templates/ja_nuevo/css/custom.css file, you need to fix with the solution below
find and change
.ja-slideshow .container {
padding: 0px;
width: auto;
}to
.ja-slideshow .container {
padding: 0px;
width: 100%;
}Regards</blockquote>
Ninja Lead
Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 3, 2015 at 4:10 am #721176Because the image under JA Slideshow lite module is very big and overlap with div outside. You can try to force it with the css style below
Open templates/ja_nuevo/css/custom.css file and add rule
@media (min-width: 1280px) {
.ja-slideshow .container {
width: 1280px !important;
}
.ja-slideshow {
background: none !important;
}.ja-ss-btns .ja-ss-next {
right: 0px !important;
}
.ja-ss-btns .ja-ss-prev {
left: 0px !important;
}
}
Ninja Lead
Moderator
Ninja Lead
- Join date:
- November 2014
- Posts:
- 16064
- Downloads:
- 310
- Uploads:
- 2864
- Thanks:
- 341
- Thanked:
- 3854 times in 3563 posts
November 3, 2015 at 4:10 am #753578Because the image under JA Slideshow lite module is very big and overlap with div outside. You can try to force it with the css style below
Open templates/ja_nuevo/css/custom.css file and add rule
@media (min-width: 1280px) {
.ja-slideshow .container {
width: 1280px !important;
}
.ja-slideshow {
background: none !important;
}.ja-ss-btns .ja-ss-next {
right: 0px !important;
}
.ja-ss-btns .ja-ss-prev {
left: 0px !important;
}
} -
AuthorPosts
This topic contains 7 replies, has 2 voices, and was last updated by
Ninja Lead 9 years, 3 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum