-
AuthorPosts
-
polo974 Friend
polo974
- Join date:
- May 2015
- Posts:
- 63
- Downloads:
- 133
- Uploads:
- 4
- Thanks:
- 13
- Thanked:
- 5 times in 2 posts
September 22, 2015 at 10:14 am #691455Hi everyone,
I would like to have my navbar fixed, and animated in charity, like the nice one in JA events ii or JA Social ii . Is that possible ? How can I do it ?
Thanks,
Polo
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
September 22, 2015 at 3:14 pm #691651So that we can try to best assist you, please provide the url of the site you’re working on,
as well as temporarily set “Optimize CSS” to “Off” within your Template Manager–General settingsTomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
September 22, 2015 at 3:14 pm #749336So that we can try to best assist you, please provide the url of the site you’re working on,
as well as temporarily set “Optimize CSS” to “Off” within your Template Manager–General settingspolo974 Friendpolo974
- Join date:
- May 2015
- Posts:
- 63
- Downloads:
- 133
- Uploads:
- 4
- Thanks:
- 13
- Thanked:
- 5 times in 2 posts
September 22, 2015 at 3:20 pm #691653polo974 Friendpolo974
- Join date:
- May 2015
- Posts:
- 63
- Downloads:
- 133
- Uploads:
- 4
- Thanks:
- 13
- Thanked:
- 5 times in 2 posts
September 22, 2015 at 3:20 pm #749338TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
September 22, 2015 at 3:32 pm #691657Try This . . . .
Within file path –> /templates/ja_charity/local/css/themes/church/template.css
at line 3733, modify as follows:
.t3-header {
background: #92e3e4 none repeat scroll 0 0;
color: #ffffff
padding-bottom: 14px;
padding-top: 14px;
position: fixed;
z-index: 99;
}SAVE CHANGES – CLEAR CACHE – REFRESH PAGE
Is this the effect you are looking to accomplish?
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
September 22, 2015 at 3:32 pm #749342Try This . . . .
Within file path –> /templates/ja_charity/local/css/themes/church/template.css
at line 3733, modify as follows:
.t3-header {
background: #92e3e4 none repeat scroll 0 0;
color: #ffffff
padding-bottom: 14px;
padding-top: 14px;
position: fixed;
z-index: 99;
}SAVE CHANGES – CLEAR CACHE – REFRESH PAGE
Is this the effect you are looking to accomplish?
polo974 Friendpolo974
- Join date:
- May 2015
- Posts:
- 63
- Downloads:
- 133
- Uploads:
- 4
- Thanks:
- 13
- Thanked:
- 5 times in 2 posts
September 22, 2015 at 3:59 pm #691663Hi,
Thanks, but that’s not exactly what i meant.:eek:
I would rather something “smooth”, like in JA events ii. Is that possible ? Do I have to transfer some files from one template to another ?
Thanks in advance,
Polo
polo974 Friendpolo974
- Join date:
- May 2015
- Posts:
- 63
- Downloads:
- 133
- Uploads:
- 4
- Thanks:
- 13
- Thanked:
- 5 times in 2 posts
September 22, 2015 at 3:59 pm #749348Hi,
Thanks, but that’s not exactly what i meant.:eek:
I would rather something “smooth”, like in JA events ii. Is that possible ? Do I have to transfer some files from one template to another ?
Thanks in advance,
Polo
polo974 Friendpolo974
- Join date:
- May 2015
- Posts:
- 63
- Downloads:
- 133
- Uploads:
- 4
- Thanks:
- 13
- Thanked:
- 5 times in 2 posts
September 23, 2015 at 1:02 pm #691958Hi,
I have found a way to do it, and I’m sharing it, if someone want to do the same thing.
The nice transition is just the affix function of boostrap + a little css effect.
So I changed line 37 in header.php to this :
<header id=”t3-header” class=”t3-header t3-smooth-header affix-top” data-spy=”affix” data-offset-top=”1″>
and added this in custom.css :
.t3-header.t3-smooth-header{
border-bottom: 6px solid #607d8b
box-shadow: 0 -2px #fff inset, 0 -3px #37474f inset;
top: 0;
z-index: 1000;
padding-bottom: 24px;
padding-top: 24px;
transition: all 0.35s ease 0s;
}
.t3-header.t3-smooth-header.affix{
position: fixed;
z-index: 1030;
padding-bottom: 10px;
padding-top: 10px;
width:100%;
transition: all 0.35s ease 0s;
background-color:#EEEEEE;
opacity: 0.9;
filter: alpha(opacity=90); /* For IE8 and earlier */
}And it works fine !
Thanks
polo974 Friendpolo974
- Join date:
- May 2015
- Posts:
- 63
- Downloads:
- 133
- Uploads:
- 4
- Thanks:
- 13
- Thanked:
- 5 times in 2 posts
September 23, 2015 at 1:02 pm #749471Hi,
I have found a way to do it, and I’m sharing it, if someone want to do the same thing.
The nice transition is just the affix function of boostrap + a little css effect.
So I changed line 37 in header.php to this :
<header id=”t3-header” class=”t3-header t3-smooth-header affix-top” data-spy=”affix” data-offset-top=”1″>
and added this in custom.css :
.t3-header.t3-smooth-header{
border-bottom: 6px solid #607d8b
box-shadow: 0 -2px #fff inset, 0 -3px #37474f inset;
top: 0;
z-index: 1000;
padding-bottom: 24px;
padding-top: 24px;
transition: all 0.35s ease 0s;
}
.t3-header.t3-smooth-header.affix{
position: fixed;
z-index: 1030;
padding-bottom: 10px;
padding-top: 10px;
width:100%;
transition: all 0.35s ease 0s;
background-color:#EEEEEE;
opacity: 0.9;
filter: alpha(opacity=90); /* For IE8 and earlier */
}And it works fine !
Thanks
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
September 23, 2015 at 3:02 pm #691980NICE WORK !!! . . . and THANK YOU for sharing your solution.
All the best with your continuing site development !!! 🙂
-
AuthorPosts
This topic contains 14 replies, has 3 voices, and was last updated by meziane 9 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum