inherit
195082
0
Mar 20, 2022 7:33:21 GMT -8
PF
1,089
June 2013
weedster
|
Post by PF on Jun 23, 2020 18:34:26 GMT -8
Hi,
Can those plug-ins that have falling objects on the forum (snow, leaves, fireworks, etc.), can it be contained to one board? I have the 'different background per board' plug-in, so I'm wondering if it's possible to have the falling objects plug-in for one board also.
Thanks.
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Jun 23, 2020 20:37:48 GMT -8
Hi, Can those plug-ins that have falling objects on the forum (snow, leaves, fireworks, etc.), can it be contained to one board? I have the 'different background per board' plug-in, so I'm wondering if it's possible to have the falling objects plug-in for one board also. Thanks. Hi PF One fairly easy way to accomplish this would be to use CSS to make the specific image(s) used in the falling images plugin, not display on the home page and all boards, then to make them display on the desired board. You would place this in your Global Header: <style> /* Hide Falling Images (place in Global HEADER) [src="URLofIMAGEGOESHERE"]{ display:none; } </style> (Replace URLofIMAGEGOESHERE with the actual URL of the image.)And place this in the Board Footer of the board where you want to display the images: <style> /* Display Falling Images (place in Board FOOTER) img[src="URLofIMAGEGOESHERE"]{ display:inline; } </style> If there is more than one image to deal with, you can use multiple selectors, separated by commas. For instance: <style> /* Hide Falling Images (place in Global HEADER) [src="URLofIMAGE1GOESHERE"], [src="URLofIMAGE2GOESHERE"], [src="URLofIMAGE3GOESHERE"], [src="URLofIMAGE4GOESHERE"], [src="URLofIMAGE5GOESHERE"], [src="URLofIMAGE6GOESHERE"]{ display:none; } </style> Please let me know if you're successful with that or if you need more help.
|
|
inherit
195082
0
Mar 20, 2022 7:33:21 GMT -8
PF
1,089
June 2013
weedster
|
Post by PF on Jun 23, 2020 21:12:32 GMT -8
Retread, it works perfectly. Thank you!
|
|