inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on Nov 18, 2013 18:12:05 GMT -8
PebbleSiteHi, I'm having a tiny issue with this plugin that only seems to happen on Google Chrome. When I hover over the pop-out image, it seems to flicker slightly (it does it for your test site too, not just my site). I checked on IE and FF and the problem doesn't appear in this browser. I was wondering whether you were aware of the problem, or know how this can be fixed. Thank you. The update is now in the Library ( it was for another Chrome bug) I'm not sure it'll fix the prblem you mentioned as that is another chrome thing. One thing that may reduce the flicker you're experiencing is adding this to your style sheet : #LPbar { background-color: #aaaaaa; } Changing the hex colour to something close to the colour of you bar image.
|
|
inherit
156288
0
Jun 13, 2015 14:09:47 GMT -8
Picasso
132
July 2010
picasso94
|
Post by Picasso on Nov 19, 2013 7:15:59 GMT -8
Pebble thank you, that helped!
|
|
Former Member
inherit
guest@proboards.com
134807
0
Nov 22, 2024 1:29:43 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Nov 26, 2013 10:47:05 GMT -8
Would love to just have this Peekaboo on my home page please Pebble.
|
|
inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on Nov 29, 2013 10:03:36 GMT -8
Hi @ritab, You can add this to your global footer to have it only show on the home page : <script> if ( proboards.data('route').name != "home" ){
$('#LPouter').hide();
} </script> I'll add this as an option next time I'm doing an update.
|
|
Former Member
inherit
guest@proboards.com
134807
0
Nov 22, 2024 1:29:43 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Nov 29, 2013 10:29:14 GMT -8
|
|
inherit
200744
0
Aug 4, 2015 7:14:37 GMT -8
Danielle
16
October 2013
mcwilliams50
|
Post by Danielle on Jan 25, 2014 10:07:48 GMT -8
Pebble Hey there, so I'm trying to put the side bar on to my forum, and it won't so up even after I filled everything out and saved it. Probably an error on my end, but do you know what I can do to sort it? Thanks
|
|
inherit
167837
0
Apr 30, 2013 15:32:12 GMT -8
leif
939
June 2011
akiglass
|
Post by leif on Feb 5, 2014 20:41:12 GMT -8
#LPcont { background-color:#282424;} doesn't let us change the bg color on other divs as the selected colors override it.
Same for LPBar for images. So I had to workaround and make the image transparent and use background color for it for LPbar
for LP cont I had to make an image.
|
|
inherit
206408
0
Jul 19, 2015 13:38:04 GMT -8
Metal Cobra
12
March 2014
metalcobra
|
Post by Metal Cobra on Mar 7, 2014 17:36:44 GMT -8
Hello~ I was hoping to replace the background color with a slightly transparent image, but I can't figure out how to do it. I had it right on a different website before ProBoards went v5, but it seems that everything changed. What am I doing wrong?
|
|
inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on Mar 7, 2014 17:41:39 GMT -8
Give me a URL to your site and I'll take a look. To everyone else, I had this thread bookmarked but apprently it hasn't been letting me know If you still need support, post again and tagme. Thanks.
|
|
inherit
206408
0
Jul 19, 2015 13:38:04 GMT -8
Metal Cobra
12
March 2014
metalcobra
|
Post by Metal Cobra on Mar 7, 2014 17:43:55 GMT -8
twistedwarriors.proboards.comI haven't been able to figure out where to put the image/how to put the image in. So I just erased whatever I tinkered with. Bad things happen when n00bs have access to HTML/CSS/etc.
|
|
inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on Mar 7, 2014 17:46:34 GMT -8
You'll need to open it up to guests, I can't see anything as it is at the moment.
|
|
inherit
206408
0
Jul 19, 2015 13:38:04 GMT -8
Metal Cobra
12
March 2014
metalcobra
|
Post by Metal Cobra on Mar 7, 2014 17:47:34 GMT -8
Sorry. It should work now. :]
|
|
inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on Mar 7, 2014 17:53:58 GMT -8
To add a background image , add this to the bottom of your style sheet :
Replacing the red with the URL to your image.
|
|
inherit
206408
0
Jul 19, 2015 13:38:04 GMT -8
Metal Cobra
12
March 2014
metalcobra
|
Post by Metal Cobra on Mar 7, 2014 17:57:43 GMT -8
Mmkay.
What would I put if I wanted to make it a bit transparent?
|
|
inherit
162752
0
Nov 7, 2024 3:58:23 GMT -8
Pebble
Where it all does or doesn't happen!
1,437
January 2011
pebbleleague
|
Post by Pebble on Mar 8, 2014 4:05:31 GMT -8
You can change a background colours opacity using
#LPcont{ background: rgba(255, 25, 25, .5) !important; }
This will give everything opacity :
#LPcont{ opacity:0.5; filter:Alpha(opacity=50); } (the .5's and 50 are the opacity settings which go from 0 (none) to 1 (transparent) or 0 to 100 for the 50)
I'm not aware of any way to target just a background image, the only way I can think of is to put your image in an image editor and reduce the opacity there.
|
|