-
AuthorPosts
-
August 20, 2011 at 12:18 am #167601
I’m using template JA Minisite in combination with JA Slideshow. Everything works fine, but I wan’t to change the color from purple tot a yellow one. I have tried to find it with Firefox and Firebug but I couldn’t find it. An example can be found at http://www.houseonline.nl.
chavan Friendchavan
- Join date:
- October 2014
- Posts:
- 4612
- Downloads:
- 0
- Uploads:
- 110
- Thanked:
- 1440 times in 1290 posts
August 20, 2011 at 4:06 am #407190Go to this Folder http://www.houseonline.nl/modules/mod_jaslideshow/assets/themes/rasite/
there you will have change the image color
http://www.houseonline.nl/modules/mod_jaslideshow/assets/themes/rasite/grad-bg.gif
http://www.houseonline.nl/modules/mod_jaslideshow/assets/themes/rasite/arrow-bg.gif
If you need any further change in color you need to edit some css style.css and mod_jaslideshow.css in that folder
Note: If you Find my Post useful please click on the Thanks Icon
1 user says Thank You to chavan for this useful post
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
August 20, 2011 at 4:28 am #407193Hi,
You remove this code from /templates/ja_minisite/core/themes/yellow/css/template.css
/* slideshow ---*/
#ja-slideshow { background: url(../images/bgd_info.png) 50% 0 repeat-y; }.mask{ background: url(../images/bgd_mask.png) 0 0 repeat-y; }
#ja-slideshow .readon{ background: #222; }
<em>@hanspost 260957 wrote:</em><blockquote>I’m using template JA Minisite in combination with JA Slideshow. Everything works fine, but I wan’t to change the color from purple tot a yellow one. I have tried to find it with Firefox and Firebug but I couldn’t find it. An example can be found at http://www.houseonline.nl.</blockquote>August 20, 2011 at 10:04 am #407244Thank you very much. The color is correct now. The only thing left is a grey column where the yellow arrow is hovering. How can I remove the grey column?
pritam Friendpritam
- Join date:
- April 2011
- Posts:
- 609
- Downloads:
- 0
- Uploads:
- 29
- Thanks:
- 11
- Thanked:
- 125 times in 113 posts
August 20, 2011 at 10:24 am #407246Hello hanspost ,
To Remove Gray column
Find this code to template.css
#ja-slideshow .ja-slide-thumbs-wrap {
-moz-background-clip: border;
-moz-background-origin: padding;
-moz-background-size: auto auto;
background-attachment: scroll;
background-color: #CCCCCC;
background-image: none;
background-position: 0 0;
background-repeat: repeat;
bottom: 10px;
position: absolute;
right: 10px;
z-index: 100;
}Change this code to :-
#ja-slideshow .ja-slide-thumbs-wrap {
-moz-background-clip: border;
-moz-background-origin: padding;
-moz-background-size: auto auto;
background-attachment: scroll;
background-image: none;
background-position: 0 0;
background-repeat: repeat;
bottom: 10px;
position: absolute;
right: 10px;
z-index: 100;
}August 20, 2011 at 2:03 pm #407279I can’t find the string you are referring to. Can you tell me which template.css I need to change?
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
August 20, 2011 at 4:08 pm #407292It is
#ja-slideshow .ja-slide-thumbs-wrap {
background: #CCC; < remove line
bottom: 10px;
position: absolute;
right: 10px;
z-index: 100;
}August 20, 2011 at 10:27 pm #407356Yes I know that, but where can I find the template.css?
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
August 21, 2011 at 4:12 am #407369I can’t identify where template.css is, because cache mode is on. So, you turn cache mode off by login backend > Extensions > template manage > ja_minisite > Global tab > Css & Javascript Compress > set Optimize CSS is No
chavan Friendchavan
- Join date:
- October 2014
- Posts:
- 4612
- Downloads:
- 0
- Uploads:
- 110
- Thanked:
- 1440 times in 1290 posts
August 21, 2011 at 5:35 am #407378Go to this File : http://www.houseonline.nl/modules/mod_jaslideshow/assets/themes/rasite/style.css
Find this code and replace it
.ja-slidewrap_rasite #ja-slideshow .ja-slide-thumbs-wrap { background: #ccc; bottom: 10px; position: absolute; right: 10px; z-index: 100; }
With
.ja-slidewrap_rasite #ja-slideshow .ja-slide-thumbs-wrap { background: none; bottom: 10px; position: absolute; right: 10px; z-index: 100; }
Note: If you Find my Post useful please click on the Thanks IconAugust 21, 2011 at 10:20 am #407410<em>@khoand 261194 wrote:</em><blockquote>I can’t identify where template.css is, because cache mode is on. So, you turn cache mode off by login backend > Extensions > template manage > ja_minisite > Global tab > Css & Javascript Compress > set Optimize CSS is No</blockquote>
Ok, I’ve done that!
August 21, 2011 at 10:21 am #407411<em>@Chavan 261204 wrote:</em><blockquote>Go to this File : http://www.houseonline.nl/modules/mod_jaslideshow/assets/themes/rasite/style.css
Find this code and replace it
.ja-slidewrap_rasite #ja-slideshow .ja-slide-thumbs-wrap { background: #ccc; bottom: 10px; position: absolute; right: 10px; z-index: 100; }
With
.ja-slidewrap_rasite #ja-slideshow .ja-slide-thumbs-wrap { background: none; bottom: 10px; position: absolute; right: 10px; z-index: 100; }
Note: If you Find my Post useful please click on the Thanks Icon</blockquote>I have changed everything but no result as you can see on http://www.houseonline.nl
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
August 21, 2011 at 1:26 pm #407425Code in http://www.houseonline.nl/modules/mod_jaslideshow/assets/themes/default/style.css
<em>@khoand 261100 wrote:</em><blockquote>It is
#ja-slideshow .ja-slide-thumbs-wrap {
background: #CCC; < remove line
bottom: 10px;
position: absolute;
right: 10px;
z-index: 100;
}
</blockquote>chavan Friendchavan
- Join date:
- October 2014
- Posts:
- 4612
- Downloads:
- 0
- Uploads:
- 110
- Thanked:
- 1440 times in 1290 posts
August 21, 2011 at 4:19 pm #407437Pm your ftp details I will fix it for you now.
August 22, 2011 at 7:07 pm #407711Thank you for the offer, but I really want to change it myself. I want to learn from this!
I’ve changed the style.css but it doesn’t work. The gray block is still visible. Any suggestions? -
AuthorPosts
This topic contains 21 replies, has 5 voices, and was last updated by pritam 13 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum