-
AuthorPosts
-
gavner Friend
gavner
- Join date:
- June 2008
- Posts:
- 142
- Downloads:
- 213
- Uploads:
- 2
- Thanks:
- 3
- Thanked:
- 2 times in 1 posts
September 19, 2015 at 11:10 pm #686670Hi, in the mobile & tablet versions of my site the slideshow is cut off. How can i push all content down so the slideshow is visible ??
gavner Friendgavner
- Join date:
- June 2008
- Posts:
- 142
- Downloads:
- 213
- Uploads:
- 2
- Thanks:
- 3
- Thanked:
- 2 times in 1 posts
September 19, 2015 at 11:56 pm #686724Can someone please help?
gavner Friendgavner
- Join date:
- June 2008
- Posts:
- 142
- Downloads:
- 213
- Uploads:
- 2
- Thanks:
- 3
- Thanked:
- 2 times in 1 posts
September 19, 2015 at 11:56 pm #749078Can someone please help?
gavner Friendgavner
- Join date:
- June 2008
- Posts:
- 142
- Downloads:
- 213
- Uploads:
- 2
- Thanks:
- 3
- Thanked:
- 2 times in 1 posts
September 20, 2015 at 9:37 pm #687222anyone please?
gavner Friendgavner
- Join date:
- June 2008
- Posts:
- 142
- Downloads:
- 213
- Uploads:
- 2
- Thanks:
- 3
- Thanked:
- 2 times in 1 posts
September 20, 2015 at 9:37 pm #749101anyone please?
Adam M ModeratorAdam M
- Join date:
- May 2014
- Posts:
- 5159
- Downloads:
- 33
- Uploads:
- 66
- Thanks:
- 95
- Thanked:
- 1271 times in 1235 posts
September 21, 2015 at 7:23 am #688119Hi @gavner,
Sorry for the delay because normally we don’t work in weekend. About your question, I checked your site and see that the slideshow it not cut off but 1 part of the slideshow is stayed below the header part, you can open file /templates/ja_events_ii/css/template.css then look for this code :
@media (min-width: 992px) {
.header-trans .t3-header-wrap .t3-header {
background: transparent;
}
}simply change it as below :
.header-trans .t3-header-wrap .t3-header {
background: transparent;
}Adam M ModeratorAdam M
- Join date:
- May 2014
- Posts:
- 5159
- Downloads:
- 33
- Uploads:
- 66
- Thanks:
- 95
- Thanked:
- 1271 times in 1235 posts
September 21, 2015 at 7:23 am #749164Hi @gavner,
Sorry for the delay because normally we don’t work in weekend. About your question, I checked your site and see that the slideshow it not cut off but 1 part of the slideshow is stayed below the header part, you can open file /templates/ja_events_ii/css/template.css then look for this code :
@media (min-width: 992px) {
.header-trans .t3-header-wrap .t3-header {
background: transparent;
}
}simply change it as below :
.header-trans .t3-header-wrap .t3-header {
background: transparent;
}gavner Friendgavner
- Join date:
- June 2008
- Posts:
- 142
- Downloads:
- 213
- Uploads:
- 2
- Thanks:
- 3
- Thanked:
- 2 times in 1 posts
September 21, 2015 at 12:53 pm #691363Hi, i change it but i dont see any different. Is this the correct code? The header is transparent but the logo is covering most of the slideshow now. I just want to either make the logo smaller or keep the header with a black background and move the slideshow down.
gavner Friendgavner
- Join date:
- June 2008
- Posts:
- 142
- Downloads:
- 213
- Uploads:
- 2
- Thanks:
- 3
- Thanked:
- 2 times in 1 posts
September 21, 2015 at 12:53 pm #749195Hi, i change it but i dont see any different. Is this the correct code? The header is transparent but the logo is covering most of the slideshow now. I just want to either make the logo smaller or keep the header with a black background and move the slideshow down.
gavner Friendgavner
- Join date:
- June 2008
- Posts:
- 142
- Downloads:
- 213
- Uploads:
- 2
- Thanks:
- 3
- Thanked:
- 2 times in 1 posts
September 21, 2015 at 1:13 pm #691364I have decided i would like to make the logo smaller on the mobile version by making it responsive or by using a different logo for mobile version. How is this done?
gavner Friendgavner
- Join date:
- June 2008
- Posts:
- 142
- Downloads:
- 213
- Uploads:
- 2
- Thanks:
- 3
- Thanked:
- 2 times in 1 posts
September 21, 2015 at 1:13 pm #749196I have decided i would like to make the logo smaller on the mobile version by making it responsive or by using a different logo for mobile version. How is this done?
Adam M ModeratorAdam M
- Join date:
- May 2014
- Posts:
- 5159
- Downloads:
- 33
- Uploads:
- 66
- Thanks:
- 95
- Thanked:
- 1271 times in 1235 posts
September 22, 2015 at 4:49 am #691419Hi @gavner,
1. There’s an option to specify logo for mobile, please navigate to admin >>> Extensions >>> Template Manager >>> choose your template >>> switch to tab Theme >>> Enable Small Logo >>> then set new logo for mobile version there.
2. About the header part, please revert the change in /templates/ja_events_ii/css/template.css, for specific, find this code :
.header-trans .t3-header-wrap .t3-header {
background: transparent;
}and change it back to :
@media (min-width: 992px) {
.header-trans .t3-header-wrap .t3-header {
background: transparent;
}
}then open file /templates/ja_events_ii/css/custom.css and add this code :
@media (max-width: 992px) {
.header-trans .t3-header-wrap.affix-top {
position: static;
}
}Next, open file templatesja_events_iitplsblocksheader.php and look for this line :
<header id="t3-header" class="wrap t3-header-wrap affix-top cpanel-close" data-spy="affix" data-offset-top="1">
change it to :
<header id="t3-header" class="wrap t3-header-wrap affix-top cpanel-close" data-spy="affix" data-offset-top="158">
Adam M ModeratorAdam M
- Join date:
- May 2014
- Posts:
- 5159
- Downloads:
- 33
- Uploads:
- 66
- Thanks:
- 95
- Thanked:
- 1271 times in 1235 posts
September 22, 2015 at 4:49 am #749251Hi @gavner,
1. There’s an option to specify logo for mobile, please navigate to admin >>> Extensions >>> Template Manager >>> choose your template >>> switch to tab Theme >>> Enable Small Logo >>> then set new logo for mobile version there.
2. About the header part, please revert the change in /templates/ja_events_ii/css/template.css, for specific, find this code :
.header-trans .t3-header-wrap .t3-header {
background: transparent;
}and change it back to :
@media (min-width: 992px) {
.header-trans .t3-header-wrap .t3-header {
background: transparent;
}
}then open file /templates/ja_events_ii/css/custom.css and add this code :
@media (max-width: 992px) {
.header-trans .t3-header-wrap.affix-top {
position: static;
}
}Next, open file templatesja_events_iitplsblocksheader.php and look for this line :
<header id="t3-header" class="wrap t3-header-wrap affix-top cpanel-close" data-spy="affix" data-offset-top="1">
change it to :
<header id="t3-header" class="wrap t3-header-wrap affix-top cpanel-close" data-spy="affix" data-offset-top="158">
-
AuthorPosts
This topic contains 13 replies, has 2 voices, and was last updated by Adam M 9 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum