inherit
195082
0
Mar 20, 2022 7:33:21 GMT -8
PF
1,089
June 2013
weedster
|
Post by PF on Jun 18, 2020 12:19:35 GMT -8
Hi,
I have a different background for one of the boards on my forum, and I would like different thread icons for that board to match the background.
Could someone advise me on which code to use for that?
Thank you.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Jun 18, 2020 13:07:58 GMT -8
Hi, I have a different background for one of the boards on my forum, and I would like different thread icons for that board to match the background. Could someone advise me on which code to use for that? Thank you. I assume you mean this image? If so, add this to the FOOTER of the board(s) where you want it changed.. <script type="text/javascript"> $(document).ready(function(){ $("img:[title^='Thread']").each(function(){ $(this).attr('src','YOUR IMAGE URL HERE'); }); }); </script>
and add your chosen image URL where it says.
|
|
inherit
195082
0
Mar 20, 2022 7:33:21 GMT -8
PF
1,089
June 2013
weedster
|
Post by PF on Jun 18, 2020 14:04:33 GMT -8
Hi, I have a different background for one of the boards on my forum, and I would like different thread icons for that board to match the background. Could someone advise me on which code to use for that? Thank you. I assume you mean this image? If so, add this to the FOOTER of the board(s) where you want it changed.. <script type="text/javascript"> $(document).ready(function(){ $("img:[title^='Thread']").each(function(){ $(this).attr('src','YOUR IMAGE URL HERE'); }); }); </script>
and add your chosen image URL where it says. Yes, that's exactly what I wanted. Thank you!
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Jun 19, 2020 4:15:12 GMT -8
No worries..
|
|