inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 4, 2016 15:12:45 GMT -8
My power level is now over 9000. Please try version 1-0-2
SUCCESS!!! Lol thank you so much once again.
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 4, 2016 15:22:08 GMT -8
My preset link colors for my forum is really invisible for the show previous comments and comment options. It works (thank the heavens) but it's hard to see. Can I fix this in CSS?
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on May 4, 2016 16:44:58 GMT -8
My preset link colors for my forum is really invisible for the show previous comments and comment options. It works (thank the heavens) but it's hard to see. Can I fix this in CSS? Yes each element has a class that you can use.
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 4, 2016 16:57:03 GMT -8
My preset link colors for my forum is really invisible for the show previous comments and comment options. It works (thank the heavens) but it's hard to see. Can I fix this in CSS? Yes each element has a class that you can use. I'm sorry. How? would it be <div class="message" style="color:black"></div> Something like that or am I going about this wrong?
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on May 4, 2016 19:47:15 GMT -8
Yes each element has a class that you can use. I'm sorry. How? would it be <div class="message" style="color:black"></div> Something like that or am I going about this wrong? To modify CSS, you'd want it in your stylesheet and looking like this (using your <div> example): .message { color: black; }
Just find the class you need to alter and place its new configuration at the bottom of your stylesheet. If you want it to affect all themes, put this in the global header instead: <style> .message { color: black; } </style>
However, if your themes use a variance of colors, I'd recommend the stylesheet and set the color needed on each theme.
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 4, 2016 20:30:05 GMT -8
I'm sorry. How? would it be <div class="message" style="color:black"></div> Something like that or am I going about this wrong? To modify CSS, you'd want it in your stylesheet and looking like this (using your <div> example): .message { color: black; }
Just find the class you need to alter and place its new configuration at the bottom of your stylesheet. If you want it to affect all themes, put this in the global header instead: <style> .message { color: black; } </style>
However, if your themes use a variance of colors, I'd recommend the stylesheet and set the color needed on each theme. I see what you're saying but I'm having troubles finding the right class. It's using my theme's preset colors for links and visited links for it, but I just want to change it on just the shoutbox and nothing else. example of where it's at: thecityofsin.freeforums.net/page/facebookwall
|
|
inherit
217348
0
Jul 27, 2022 7:26:44 GMT -8
Lynx
5,846
January 2015
msg
|
Post by Lynx on May 5, 2016 2:40:58 GMT -8
To modify CSS, you'd want it in your stylesheet and looking like this (using your <div> example): .message { color: black; }
Just find the class you need to alter and place its new configuration at the bottom of your stylesheet. If you want it to affect all themes, put this in the global header instead: <style> .message { color: black; } </style>
However, if your themes use a variance of colors, I'd recommend the stylesheet and set the color needed on each theme. I see what you're saying but I'm having troubles finding the right class. It's using my theme's preset colors for links and visited links for it, but I just want to change it on just the shoutbox and nothing else. example of where it's at: thecityofsin.freeforums.net/page/facebookwallSorry. It looks like your shoutbox isn't visible to guests, so I'm not able to help any further.
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 5, 2016 8:37:36 GMT -8
I see what you're saying but I'm having troubles finding the right class. It's using my theme's preset colors for links and visited links for it, but I just want to change it on just the shoutbox and nothing else. example of where it's at: thecityofsin.freeforums.net/page/facebookwallSorry. It looks like your shoutbox isn't visible to guests, so I'm not able to help any further. I fixed that. I'm sorry. It should be visible now.
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on May 6, 2016 15:14:52 GMT -8
Sorry. It looks like your shoutbox isn't visible to guests, so I'm not able to help any further. I fixed that. I'm sorry. It should be visible now. /*Using proboards classes corrupt their JS*/
.shoutbox-postclone{
border: 1px solid #E6E6E6;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
text-align: left;
position: relative;
overflow: hidden;
margin-top: 10px;
margin-right: 10px;
padding: 5px 15px 5px 10px;
}
.content-boxclone{
background: #FFF;
border: 1px solid #E6E6E6;
border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
color: #000;
}
.shoutbox_cedit_button{
font: 85% Verdana,Arial;
display: inline-block;
width: 32px;
margin-right: 5px;
visibility: visible;
}
.shoutbox_deleteclone{
color: #000 !important;
font: 700 100% Verdana,Arial;
text-decoration: none;
border: 1px solid #E6E6E6;
border-top-width: 0;
border-right-width: 0;
border-bottom-width: 0;
position: absolute;
right: -7px;
top: 0;
width: 15px;
cursor: pointer;
margin-left: 20px;
margin-top: 0;
padding: 3px;
height: 100%;
display: inline-block;
}
.show-moreclone{
margin-bottom:-9px;
display: block;
font-weight: 700;
padding: 4px;
text-align: center;
}
.shoutCollapse{
display:none !important;
}
You can use those class names. This was a copy from my css in the plugin. Other than that you can right click and inspect an item in google chrome web browser and see the class of anything
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 6, 2016 18:01:57 GMT -8
I fixed that. I'm sorry. It should be visible now.
You can use those class names. This was a copy from my css in the plugin. Other than that you can right click and inspect an item in google chrome web browser and see the class of anything all fixed thank you. I just needed to do this:
<style>
.shoutComControls.shoutCom.shoutbox_comment_button {
color: white;
}
.show-moreclone {
color: white !important;
}
</style>
|
|
inherit
209650
0
Feb 28, 2021 2:32:42 GMT -8
weedfanatic
114
May 2014
weedfanatic
|
Post by weedfanatic on May 8, 2016 2:50:41 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ This is really awesome! Good work on this, it's a really neat plugin. I love shoutbox related plugins, and this one is one of the best, if not best! I don't know if you're taking suggestions, but there was a couple things I was thinking. -Could/would you be able to make it so it shows previous/all comments to a shout, by default? Like an optional setting? -Is it possible to show the Comment/Edit "buttons/links" by default, instead of having to hover over them? -Would you be able to make it so you can change the comments background color? Just wondering, especially about the default display of all/previous comments. Either way, thanks for this great plugin!
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on May 8, 2016 18:11:46 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ This is really awesome! Good work on this, it's a really neat plugin. I love shoutbox related plugins, and this one is one of the best, if not best! I don't know if you're taking suggestions, but there was a couple things I was thinking. -Could/would you be able to make it so it shows previous/all comments to a shout, by default? Like an optional setting? -Is it possible to show the Comment/Edit "buttons/links" by default, instead of having to hover over them? -Would you be able to make it so you can change the comments background color? Just wondering, especially about the default display of all/previous comments. Either way, thanks for this great plugin! Seeing that I have fulfilled the requestors requests I am willing to do all these things
|
|
inherit
209650
0
Feb 28, 2021 2:32:42 GMT -8
weedfanatic
114
May 2014
weedfanatic
|
Post by weedfanatic on May 9, 2016 1:26:06 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ This is really awesome! Good work on this, it's a really neat plugin. I love shoutbox related plugins, and this one is one of the best, if not best! I don't know if you're taking suggestions, but there was a couple things I was thinking. -Could/would you be able to make it so it shows previous/all comments to a shout, by default? Like an optional setting? -Is it possible to show the Comment/Edit "buttons/links" by default, instead of having to hover over them? -Would you be able to make it so you can change the comments background color? Just wondering, especially about the default display of all/previous comments. Either way, thanks for this great plugin! Seeing that I have fulfilled the requestors requests I am willing to do all these things That would be awesome, and much appreciated! Let me know if you decide to do any of these! If not, do not worry, this is still a great plugin! One other thing I thought of, is to have a toggle button/link for show previous comments. Ex- Currently, after you click show previous comments, the button/link disappears and displays all comments as intended. It would be cool to have the button/link always visible, and to be able to toggle between showing/hiding previous comments. Just a thought. =d I'd honestly still rather prefer the option to display all comments by default if I had to choose. If I think of anything else possibly useful to add to this plugin, I'll let you know if you're interested. Edit- Almost forgot to ask, is there a way to prevent a page refresh, from resetting the show previous comments state? I'm guessing if comments were displayed by default like I mentioned before, it would work this way with page refreshes? Sorry to be a pest, just curious. xD
|
|
inherit
201984
0
Sept 11, 2023 1:23:07 GMT -8
P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓
Using My Talents Elsewhere
3,314
November 2013
pastuleo23
|
Post by P̌̓aͧś̀t̀u͒le͆o͂2̀3̃̓ on May 9, 2016 4:04:32 GMT -8
Seeing that I have fulfilled the requestors requests I am willing to do all these things That would be awesome, and much appreciated! Let me know if you decide to do any of these! If not, do not worry, this is still a great plugin! One other thing I thought of, is to have a toggle button/link for show previous comments. Ex- Currently, after you click show previous comments, the button/link disappears and displays all comments as intended. It would be cool to have the button/link always visible, and to be able to toggle between showing/hiding previous comments. Just a thought. =d I'd honestly still rather prefer the option to display all comments by default if I had to choose. If I think of anything else possibly useful to add to this plugin, I'll let you know if you're interested. Edit- Almost forgot to ask, is there a way to prevent a page refresh, from resetting the show previous comments state? I'm guessing if comments were displayed by default like I mentioned befoWouldn'tould work this way with page refreshes? Sorry to be a pest, just curious. xD As far as page refreshes, I do not plan on storing last opened closed. But toggle visibility could be done. Wouldn't it be better to use an icon instead of text if a toggle is done?
|
|
inherit
220772
0
Mar 24, 2023 21:43:23 GMT -8
Tiffy-Bean
I support plugin and theme makers rights to create themes and plugins that are paid for.
1,052
April 2015
tiffythecodingwhiz
|
Post by Tiffy-Bean on May 9, 2016 8:22:11 GMT -8
That would be awesome, and much appreciated! Let me know if you decide to do any of these! If not, do not worry, this is still a great plugin! One other thing I thought of, is to have a toggle button/link for show previous comments. Ex- Currently, after you click show previous comments, the button/link disappears and displays all comments as intended. It would be cool to have the button/link always visible, and to be able to toggle between showing/hiding previous comments. Just a thought. =d I'd honestly still rather prefer the option to display all comments by default if I had to choose. If I think of anything else possibly useful to add to this plugin, I'll let you know if you're interested. Edit- Almost forgot to ask, is there a way to prevent a page refresh, from resetting the show previous comments state? I'm guessing if comments were displayed by default like I mentioned befoWouldn'tould work this way with page refreshes? Sorry to be a pest, just curious. xD As far as page refreshes, I do not plan on storing last opened closed. But toggle visibility could be done. Wouldn't it be better to use an icon instead of text if a toggle is done? I vote yes on the icon. FYI. lol
|
|