#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Dec 15, 2016 11:11:19 GMT -8
I don't know if this was asked before (so excuse me if it was already)... I installed this on my forum, and the top container looks like it was done in Trebuchet font. It also appears to be spaced out essay-style. Any reason on why this is the case? And how do I fix that? Thanks. Can you provide a link to the forum in question? The sidebar containers don't use any of their own fonts. They're entirely reliant on your forum's existing styling.
|
|
inherit
55119
0
Jan 26, 2024 8:54:28 GMT -8
Mandoli
488
August 2005
mandyb
|
Post by Mandoli on Dec 15, 2016 13:03:45 GMT -8
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Dec 15, 2016 13:05:39 GMT -8
Mandoli : This is due to the fact that the ID you gave to the container is "welcome". That ID already belongs to another object (your login/logout/register links) so it's adopting their styling based on your style sheet rules. You'll need to assign a different ID to that container or remove the ID from the container if you're not using the ID for anything.
|
|
inherit
55119
0
Jan 26, 2024 8:54:28 GMT -8
Mandoli
488
August 2005
mandyb
|
Post by Mandoli on Dec 15, 2016 13:11:03 GMT -8
Brian Ah, yes. Changed and fixed. Didn't think straight.
|
|
inherit
239943
0
Apr 20, 2019 2:21:07 GMT -8
jrj84105
136
December 2016
jrj84105
|
Post by jrj84105 on Jan 16, 2017 22:51:44 GMT -8
Is there a way to prevent the sideba from displaying on the posting page? Thanks
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jan 17, 2017 9:31:40 GMT -8
Is there a way to prevent the sideba from displaying on the posting page? Thanks Yes. Use the homepage-only code found at the end of the first post in this thread, but change this line: To this:
|
|
inherit
239943
0
Apr 20, 2019 2:21:07 GMT -8
jrj84105
136
December 2016
jrj84105
|
Post by jrj84105 on Jan 18, 2017 16:32:38 GMT -8
Thanks! That really made more space when posting from iPhone.
|
|
inherit
237277
0
Jun 21, 2018 8:33:59 GMT -8
adm1n0
71
September 2016
adm1n0
|
Post by adm1n0 on Jan 19, 2017 10:15:38 GMT -8
Hi Brian , Thank you very much for creating this amazing plugin and giving so much helpfull support! I've read many pages on this thread, but didn't find the answer to my question(s). So hope you can help me here.. My test forum1. Is it possible to hide the sidebar for guests, except the single one on top (welcome)? 2. If yes, I would like to add a message for guests in that box, but for members (when logged in) an other message will appear. Something like: - For members: " Welcome back {username}" - For guests: " Please login or register to get access to all boards" Thanks in advance for your time and help!
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jan 19, 2017 10:26:25 GMT -8
1. Is it possible to hide the sidebar for guests, except the single one on top (welcome)? I was really hoping that was gonna cut off after the word "guests" because that would've been much easier, but alas. If you give an ID to the welcome container it's possible to make only that one show for guests. For example, if the ID is side-welcome you can use this in the plugin's header section: 2. If yes, I would like to add a message for guests in that box, but for members (when logged in) an other message will appear. You can use Javascript to achieve this similar to how you're producing the display name in the existing message.
|
|
inherit
237277
0
Jun 21, 2018 8:33:59 GMT -8
adm1n0
71
September 2016
adm1n0
|
Post by adm1n0 on Jan 19, 2017 11:17:59 GMT -8
If you give an ID to the welcome container it's possible to make only that one show for guests. For example, if the ID is side-welcome you can use this in the plugin's header section: This worked perfect!! TY!! You can use Javascript to achieve this similar to how you're producing the display name in the existing message. When I put this in the message with your green lines it works perfect. But when I want to link (for guests: to link to the register page) or use the code below (for the logged in message) the text is gone again?
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jan 19, 2017 11:23:14 GMT -8
adm1n0: This is due to the quotation marks you're adding within the span tag on this line. They're causing the string to close early, which errors out the code. You can either escape these by adding a backslash before them or you can substitute the ones next to the parenthesis with apostrophes instead.
|
|
inherit
237277
0
Jun 21, 2018 8:33:59 GMT -8
adm1n0
71
September 2016
adm1n0
|
Post by adm1n0 on Jan 19, 2017 12:04:37 GMT -8
adm1n0 : This is due to the quotation marks you're adding within the span tag on this line. They're causing the string to close early, which errors out the code. You can either escape these by adding a backslash before them or you can substitute the ones next to the parenthesis with apostrophes instead. That did it!!! Thanks so much for your help! All perfect now
|
|
inherit
216224
0
Aug 1, 2024 1:18:46 GMT -8
Quozzo
408
November 2014
quozzo
|
Post by Quozzo on Jan 31, 2017 8:59:34 GMT -8
(My signature links to my site.) It just links to the current URL.
|
|
#eb7100
33409
0
1
Oct 19, 2024 14:37:42 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Jan 31, 2017 9:53:58 GMT -8
I have a drop-down list of important links in the 2nd box of my sidebar. I changed a couple of links, and now none of the boxes below that 2nd one are visible. (The other boxes appear if I disable the 2nd one.) Help? (My signature links to my site.) You'll need to perform the following changes to that container, since it contains malformed HTML. - Remove every instance of </a> since they're all stray closing tags - Add a closing </select> tag after the last </option> tag to close off the dropdown menu
|
|
Former Member
inherit
guest@proboards.com
239777
0
Nov 1, 2024 8:21:59 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Feb 5, 2017 19:28:21 GMT -8
I know this may have been discussed before, but I am hoping someone could help me. I've been using the Sidebar Redux plugin to move my shout box to the right side of my forum's main page. The thing is that on all the other pages there is a big gap that reduces the width of the page contents . Is there a way to make the Sidebar Redux plugin only work on my main page?
|
|