peekabooicu
New Member
life is like a box of chocolates
Posts: 112
inherit
269527
0
Nov 17, 2024 20:08:49 GMT -8
peekabooicu
life is like a box of chocolates
112
June 2024
peekabooicu
|
Post by peekabooicu on Aug 18, 2024 12:44:42 GMT -8
Hello, I have been trying to figure out why the whisper Plugin is making a block outside the whisper tag and I wondered if that is supposed to happen. here is what it looks like on my end... My question is what whisper tag is supposed to look like once you whisper tag someone? I thought maybe there was a small hiccup or something... plus, when you hover over it with your mouse, it makes a black transparent hover when it hovers over the text. Is the image above supposed to look like that? the first time I used it , it was not working right, the second time I put it back in, it was doing this , image above. I don't know if it is a glitch on my end or something wrong with the whisper tag? Thanks in advance for the help in advance.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,322
January 2004
todge
|
Post by Todge on Aug 20, 2024 12:08:05 GMT -8
Hello, I have been trying to figure out why the whisper Plugin is making a block outside the whisper tag and I wondered if that is supposed to happen. here is what it looks like on my end... View AttachmentMy question is what whisper tag is supposed to look like once you whisper tag someone? I thought maybe there was a small hiccup or something... plus, when you hover over it with your mouse, it makes a black transparent hover when it hovers over the text. Is the image above supposed to look like that? the first time I used it , it was not working right, the second time I put it back in, it was doing this , image above. I don't know if it is a glitch on my end or something wrong with the whisper tag? Thanks in advance for the help in advance. How would you like the whispers to appear? This can be changed by adding CSS styling into the plugin option.
|
|
peekabooicu
New Member
life is like a box of chocolates
Posts: 112
inherit
269527
0
Nov 17, 2024 20:08:49 GMT -8
peekabooicu
life is like a box of chocolates
112
June 2024
peekabooicu
|
Post by peekabooicu on Aug 20, 2024 16:23:30 GMT -8
Hello Todge, thank you for replying.... I am not sure what I want it to look like....I just want to know if the whispers tag is working right on my forum , for now anyways... I am not good with CSS, I can learn though... What do you think would be the easiest way to change it up a bit? Got any ideas?
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,322
January 2004
todge
|
Post by Todge on Aug 22, 2024 15:23:17 GMT -8
Hello Todge, thank you for replying.... I am not sure what I want it to look like....I just want to know if the whispers tag is working right on my forum , for now anyways... I am not good with CSS, I can learn though... What do you think would be the easiest way to change it up a bit? Got any ideas? I'm afraid I have no idea, I can give you a couple of examples, but that's about it.. A standard whisper will be the entire width of the post, but plain text. I see that your whisper has a border, if that has not been added within the plugin setting, another piece of CSS on your forum is adding it, if that is the case, you can return it to it's default behaviour with this piece of code.. border: transparent; If you want a border, but not across the entire post, try this.. border: 1px solid black; width: fit-content; (You can change the number and colour to something that better suits your forum.) If you want to indent it, try this.. border: 1px solid black; width: fit-content; margin-left: 50px; If you'd like rounded corners.. border: 1px solid black; width: fit-content; margin-left: 50px; border-radius: 3px; You can change the background and/or text colour.. border: 1px solid black; width: fit-content; margin-left: 50px; border-radius: 3px; background-color: red; color: blue; Or you can obviously mix and match to create something more to your liking.. If this gives you an idea of what you'd like, but am unable to create it yourself, then by all means, either ask in the thread here, or if you prefer, send me a PM.
|
|
peekabooicu
New Member
life is like a box of chocolates
Posts: 112
inherit
269527
0
Nov 17, 2024 20:08:49 GMT -8
peekabooicu
life is like a box of chocolates
112
June 2024
peekabooicu
|
Post by peekabooicu on Aug 22, 2024 17:46:08 GMT -8
Todgethank you so much... the last one worked perfectly!!!! I cant thank you enough! Perfect!
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,322
January 2004
todge
|
Post by Todge on Aug 24, 2024 1:33:24 GMT -8
No worries..
|
|