-
AuthorPosts
-
arckoo Friend
arckoo
- Join date:
- May 2011
- Posts:
- 112
- Downloads:
- 0
- Uploads:
- 8
- Thanks:
- 50
- Thanked:
- 4 times in 1 posts
November 1, 2011 at 2:22 am #170261Hello,
Using JA Social 1.7 with Joomla 1.7.2 I’d like to know how to remove the blue background of the text in JA Slideshow Module in the JA Social template. The ‘Read more’ button looks fine, but the white text has this huge bars of blue background and I just want the white text to appear. Is this possible and if so… how?
http://www.joomlart.com/demo/#joomla17-templates.joomlart.com/ja_social
When I set the ‘Description background opacity’ to 0.1 the blue background including the text (almost) dissappears, so apparently the text is also part of the background.
I don’t have a problem to set ‘Show Description’ to ‘No Description’ in the parameters to solve my problem above, but then I would still like the ‘Read more’ button to appear (otherwise I don’t have a link to the article involved). Is this possible or are there other ways to go around this?
Cheers!
Arckookhoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
November 1, 2011 at 2:33 am #422677Hi,
You find this code from /modules/mod_jaslideshow/assets/themes/social/mod_jaslideshow.css
.ja-moduleraw-style2 .ja-slide-desc a span {
background: #2595BD; < change this line
color: white;
text-decoration: none;
padding: 0px 5px;
margin: 0px;
line-height: 1.2;
display: inline;
}arckoo Friendarckoo
- Join date:
- May 2011
- Posts:
- 112
- Downloads:
- 0
- Uploads:
- 8
- Thanks:
- 50
- Thanked:
- 4 times in 1 posts
November 1, 2011 at 2:52 am #422687Thanks for the quick reply! That’s exactly what I was looking for 🙂
Would you also happen to know how I get a small black border around the letters?Something like this:
chavan Friendchavan
- Join date:
- October 2014
- Posts:
- 4612
- Downloads:
- 0
- Uploads:
- 110
- Thanked:
- 1440 times in 1290 posts
November 1, 2011 at 3:04 am #422697Go to the same file /modules/mod_jaslideshow/assets/themes/social/mod_jaslideshow.css
and add this Code to above posted css
text-shadow: 0 1px 0 #000000;For ex:
.ja-moduleraw-style2 .ja-slide-desc a span { color: white; text-decoration: none; padding: 0px 5px; margin: 0px; line-height: 1.2; display: inline;
text-shadow: 0 1px 0 #000000; }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
November 1, 2011 at 3:11 am #422700You add a image into folder images…You replace this code from /modules/mod_jaslideshow/assets/themes/social/mod_jaslideshow.css
.ja-moduleraw-style2 .ja-slide-desc a span {
background: #2595BD;
color: white;
text-decoration: none;
padding: 0px 5px;
margin: 0px;
line-height: 1.2;
display: inline;
}
with
.ja-moduleraw-style2 .ja-slide-desc a span {
background: url(../images/your image)
color: white;
text-decoration: none;
padding: 0px 5px;
margin: 0px;
line-height: 1.2;
display: inline;
}arckoo Friendarckoo
- Join date:
- May 2011
- Posts:
- 112
- Downloads:
- 0
- Uploads:
- 8
- Thanks:
- 50
- Thanked:
- 4 times in 1 posts
November 1, 2011 at 3:35 am #422706Thanks again!!
*2 thumbs up!*
arckoo Friendarckoo
- Join date:
- May 2011
- Posts:
- 112
- Downloads:
- 0
- Uploads:
- 8
- Thanks:
- 50
- Thanked:
- 4 times in 1 posts
November 1, 2011 at 4:12 am #422714One more question though:
I’ve made the letters smaller and it looks really great now, only I wish for the lines of texts to move down a little (now they show up half way through the image and I would like them to move in at the bottom of the image). I looked in the parameters of the module but as far as I can see there is no setting for this (except maybe ‘Mark Alignment’ which does move the text lines up, but when I set ‘Mark Alignment’ to ‘Bottom’ it moves the text lines to the right and even up a little).
Is it possible to change also change this in mod_jaslideshow.css or any other file?
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
November 1, 2011 at 4:20 am #422715<em>@arckoo 280142 wrote:</em><blockquote>One more question though:
I’ve made the letters smaller and it looks really great now, only I wish for the lines of texts to move down a little (now they show up half way through the image and I would like them to move in at the bottom of the image). I looked in the parameters of the module but as far as I can see there is no setting for this (except maybe ‘Mark Alignment’ which does move the text lines up, but when I set ‘Mark Alignment’ to ‘Bottom’ it moves the text lines to the right and even up a little).
Is it possible to change also change this in mod_jaslideshow.css or any other file?</blockquote>
You replace this code from /modules/mod_jaslideshow/assets/themes/social/mod_jaslideshow.css
.ja-moduleraw-style2 .ja-slide-desc {
font-family: Arial,Helvetica,sans-serif;
font-size: 250%;
font-weight: normal;
left: 22px;
position: absolute;
top: 130px;
}
with
.ja-moduleraw-style2 .ja-slide-desc {
font-family: Arial,Helvetica,sans-serif;
font-size: 250%;
font-weight: normal;
left: 22px;
position: absolute;
top: 150px;
}arckoo Friendarckoo
- Join date:
- May 2011
- Posts:
- 112
- Downloads:
- 0
- Uploads:
- 8
- Thanks:
- 50
- Thanked:
- 4 times in 1 posts
November 1, 2011 at 4:48 am #422721Thanks again!! Really appreciate your help!
phicts Friendphicts
- Join date:
- June 2011
- Posts:
- 85
- Downloads:
- 0
- Uploads:
- 10
- Thanks:
- 26
- Thanked:
- 3 times in 1 posts
November 2, 2011 at 10:50 am #422923Thank you very much khoand. 🙂
AuthorPostsViewing 10 posts - 1 through 10 (of 10 total)This topic contains 10 replies, has 4 voices, and was last updated by phicts 13 years ago.
We moved to new unified forum. Please post all new support queries in our New Forum
How to remove background of text in JA Slideshow
Viewing 10 posts - 1 through 10 (of 10 total)