inherit
96289
0
May 17, 2020 9:37:00 GMT -8
elli
1,822
January 2007
ebbymac
|
Post by elli on Mar 18, 2021 10:42:21 GMT -8
PF The "Chat" button? Yeah, there should be a way. Give me a couple of days to have a look, a bit busy at the moment.
|
|
inherit
195082
0
Mar 20, 2022 7:33:21 GMT -8
PF
1,089
June 2013
weedster
|
Post by PF on Mar 18, 2021 11:39:07 GMT -8
PF The "Chat" button? Yeah, there should be a way. Give me a couple of days to have a look, a bit busy at the moment. Thank you for your reply elli, but I found where to set the permissions. I set it to members and staff, so guests can't see it now. Thanks again.
|
|
inherit
96289
0
May 17, 2020 9:37:00 GMT -8
elli
1,822
January 2007
ebbymac
|
Post by elli on Mar 18, 2021 11:58:19 GMT -8
PF Good to know, thanks for the update 👍
|
|
inherit
195082
0
Mar 20, 2022 7:33:21 GMT -8
PF
1,089
June 2013
weedster
|
Post by PF on Mar 19, 2021 7:01:09 GMT -8
PF Good to know, thanks for the update 👍 Hi elli , I have this installed on a forum, but the users don't get a notification when there's a new message. I don't see that little red dot or anything. Any suggestion on what I might be doing wrong? Thanks. ETA: I have the free version of Cbox, btw. I'm thinking maybe it's because I would need the Premium version that there is no notification. ETA: I think maybe I didn't put in the correct URL with the box id. I did that, so it should work now. I'll update you if it still doesn't work.
|
|
ffs
Junior Member
France-based member
Posts: 307
inherit
264704
0
Jun 12, 2022 11:13:10 GMT -8
ffs
France-based member
307
July 2021
frenchforumsurvivor
|
Post by ffs on Aug 29, 2021 7:50:39 GMT -8
A nice, simple addition to a forum, but is there a way to position the Chat bubble further up the page?
|
|
inherit
96289
0
May 17, 2020 9:37:00 GMT -8
elli
1,822
January 2007
ebbymac
|
Post by elli on Aug 29, 2021 12:50:44 GMT -8
ffs Absolutely. You can grab the class name of the button, .cbox-notifications__button, and use positioning with CSS to move it around as you please. For example, if you wanted it on the right side and halfway up the page: .cbox-notifications__button { bottom: 50%; position: fixed; right: 25px; } This would go at the bottom of your stylesheet. Admin > Themes > Advanced Styles & CSS > "Style Sheet", scroll to the very bottom of the code area and paste the above on a new line.
|
|
ffs
Junior Member
France-based member
Posts: 307
inherit
264704
0
Jun 12, 2022 11:13:10 GMT -8
ffs
France-based member
307
July 2021
frenchforumsurvivor
|
Post by ffs on Aug 29, 2021 20:20:08 GMT -8
Sorry, elli , that didn't work.
|
|
inherit
96289
0
May 17, 2020 9:37:00 GMT -8
elli
1,822
January 2007
ebbymac
|
Post by elli on Aug 30, 2021 6:46:15 GMT -8
ffs Hmm, can you show me what you did or link to your forum?
|
|
ffs
Junior Member
France-based member
Posts: 307
inherit
264704
0
Jun 12, 2022 11:13:10 GMT -8
ffs
France-based member
307
July 2021
frenchforumsurvivor
|
Post by ffs on Aug 30, 2021 7:58:02 GMT -8
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,018
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Aug 30, 2021 9:09:25 GMT -8
It looks like there was a typo made causing the rule not to apply at all (i.e. .cbox-notifications__notification) But even if applied correctly the rule still loses to a rival So add some weight (specificity) to selector to give it an advantage over its competitors (e.g. button.cbox-notifications__button )
|
|
ffs
Junior Member
France-based member
Posts: 307
inherit
264704
0
Jun 12, 2022 11:13:10 GMT -8
ffs
France-based member
307
July 2021
frenchforumsurvivor
|
Post by ffs on Aug 30, 2021 20:18:13 GMT -8
I couldn't spot the typo and I'm not sure where/how to add the weight (specificity)!
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,018
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Aug 30, 2021 22:02:48 GMT -8
I couldn't spot the typo and I'm not sure where/how to add the weight (specificity)! Typo was highlighted in red in my previous post .cbox-notifications__button { bottom: 50%; position: fixed; right: 25px; } and the additional weight was shown denoted using lime-green
|
|
ffs
Junior Member
France-based member
Posts: 307
inherit
264704
0
Jun 12, 2022 11:13:10 GMT -8
ffs
France-based member
307
July 2021
frenchforumsurvivor
|
Post by ffs on Aug 31, 2021 2:54:30 GMT -8
Ah, I was looking for a spelling mistake, not a completely wrong word, and elli has now edited the code in his snippet . With those changes it shows as promised.
|
|