#eb7100
33409
0
1
Nov 13, 2024 16:56:46 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Nov 8, 2021 19:32:47 GMT -8
Hello I have tried to search for my question but cant seem to find it. Can I somehow add an overview over the PM/personal messages that the current user has and the unread ones? I found the part where I could insert avatar and name, but my javascript skills are non-existent. Best regards If something exists in the Forum Wrapper template you can move it into the sidebar using JavaScript. <script type="text/javascript"> $(function() { $('#sidebar-element-id').append($('#container-element-id')); }); </script> In the case of your personal messages you can create a container with a unique ID in the Forum Wrapper template that holds all of that information, then the JavaScript would move that container into the sidebar element with the corresponding ID. <div id="container-element-id"> Your personal messages content here </div> If you're unfamiliar with how to create a container like this in the Forum Wrapper template I'd suggest asking how to create it in the Templates board.
|
|
inherit
264109
0
Sept 22, 2023 4:03:21 GMT -8
Murikov
4
April 2021
murikov
|
Post by Murikov on Nov 14, 2021 6:57:30 GMT -8
Hello guys I am looking for a way to put a (regular) container just below the regular news bar and on top of the boards / content containers. I want to fill this container with a bit of text, and image and maybe a link to a current thread or post (the idea is to make it kinda like a "featured news" container). Something like in the mock-up picture I attached to this post: I saw that the Sidebar Redux plugin (which we already use for our glorious sidebar) also has a "Header/Footer" tab in which I can insert text right at the place that I had in mind. But in that tab there are no container or style settings like in the actual sidebars. Does somebody has any advice on how to use that tab to put a clean container there? And where could I edit the styling of the container's text? Attachments:
|
|
#eb7100
33409
0
1
Nov 13, 2024 16:56:46 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Nov 15, 2021 12:47:38 GMT -8
Hello guys I am looking for a way to put a (regular) container just below the regular news bar and on top of the boards / content containers. I want to fill this container with a bit of text, and image and maybe a link to a current thread or post (the idea is to make it kinda like a "featured news" container). Something like in the mock-up picture I attached to this post: I saw that the Sidebar Redux plugin (which we already use for our glorious sidebar) also has a "Header/Footer" tab in which I can insert text right at the place that I had in mind. But in that tab there are no container or style settings like in the actual sidebars. Does somebody has any advice on how to use that tab to put a clean container there? And where could I edit the styling of the container's text? All of the default containers on the forum as well as those created by this plugin use the same HTML. You can find it in this post: support.proboards.com/post/5541650It can be styled the same way as the other sidebar containers.
|
|
inherit
265621
0
Apr 12, 2022 4:59:51 GMT -8
bicho1980
2
December 2021
bicho1980
|
Post by bicho1980 on Jan 18, 2022 14:45:14 GMT -8
Hello to all guys, first thanks for all the help you guys give to the community. Saying this, I'm very new at this, and I wanted to put the last threads and recent posts on the sidebar, but I'm not seeing able to do that, any help please? If possible giving me steam by step and with an example because as I said I'm new on this and not being able to display what wanted to, thanks and sorry for this.
Any help please, thanks
best regards
|
|
Former Member
inherit
guest@proboards.com
181302
0
Nov 22, 2024 13:13:50 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Feb 5, 2022 3:37:32 GMT -8
Hello, Brian
Forum: webmastershaven.proboards.com/ How can I clean up the shoutbox, as it seems to have bits hidden, like the time and the send button is almost out of the block.
|
|
#eb7100
33409
0
1
Nov 13, 2024 16:56:46 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Feb 7, 2022 11:02:56 GMT -8
Hello, Brian
Forum: webmastershaven.proboards.com/ How can I clean up the shoutbox, as it seems to have bits hidden, like the time and the send button is almost out of the block.
This is because the shoutbox only allows 100px of height for its controls. Since you've placed it in the sidebar and it doesn't have enough width to accommodate its buttons it has to move them to another line, moving the Send button past the height of the controls container. You can increase the width of the sidebar to accommodate the buttons or you can add CSS to the theme's style sheet to remove the height restrictions on that container. .shoutbox_container.orientation-top, .shoutbox_container.orientation-bottom { padding: 0; }
.shoutbox_container > .shoutbox_form_container { position: static; }
.shoutbox_form { height: auto; }
|
|
Former Member
inherit
guest@proboards.com
181302
0
Nov 22, 2024 13:13:50 GMT -8
Former Member
0
January 1970
Former Member
|
Post by Former Member on Mar 25, 2022 8:52:55 GMT -8
Brian , I would like to have the sidebar go under main content when on small screens. Is there a way to do this?
I have only one item in the sidebar, so there's no need to do for adding the id. The whole left sidebar to go under the main content on phones using desktop mode is what I want.
Thank you.
|
|
#eb7100
33409
0
1
Nov 13, 2024 16:56:46 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Mar 25, 2022 14:28:15 GMT -8
Brian , I would like to have the sidebar go under main content when on small screens. Is there a way to do this?
I have only one item in the sidebar, so there's no need to do for adding the id. The whole left sidebar to go under the main content on phones using desktop mode is what I want.
Thank you. The HTML layout of the sidebar isn't geared towards a responsive design so I don't think this would be possible without editing the source code of the plugin entirely. Sorry! Most stuff I've made for v5 has lived by the philosophy of "this is my forum's width and smaller devices will have to deal with it." Working on ProBoards v6 has made me a lot more responsive-aware, so this plugin will be much more considerate of screen size in whatever form it comes back as.
|
|
inherit
220198
0
Sept 7, 2024 5:43:00 GMT -8
gb9454
Life is too short. Don't waste it reading this.
521
April 2015
gb9454
|
Post by gb9454 on Aug 12, 2022 8:24:04 GMT -8
Hi Brian. I've messed up somewhere and was wondering how to get space under the sidebar and above 'Three Matches' Thank you. talkaboutfootballforum.com/
|
|
#eb7100
33409
0
1
Nov 13, 2024 16:56:46 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Aug 12, 2022 12:02:56 GMT -8
Hi Brian. I've messed up somewhere and was wondering how to get space under the sidebar and above 'Three Matches' Thank you. The first container in the right sidebar is missing three closing </div> tags at the end, so it's not closing off correctly. I would also recommend removing the following tags anywhere they're found in your sidebar containers. They're not meant to be used anywhere outside of the Forum Wrapper layout template: <head> </head> <body> </body> <title> </title>
|
|
inherit
220198
0
Sept 7, 2024 5:43:00 GMT -8
gb9454
Life is too short. Don't waste it reading this.
521
April 2015
gb9454
|
Post by gb9454 on Aug 13, 2022 0:14:45 GMT -8
Thank you Brian.
|
|
inherit
262183
0
Nov 20, 2024 20:09:49 GMT -8
Funkytown
63
September 2020
funkytown
|
Post by Funkytown on Aug 13, 2022 13:48:07 GMT -8
Hello to all guys, first thanks for all the help you guys give to the community. Saying this, I'm very new at this, and I wanted to put the last threads and recent posts on the sidebar, but I'm not seeing able to do that, any help please? If possible giving me steam by step and with an example because as I said I'm new on this and not being able to display what wanted to, thanks and sorry for this. Any help please, thanks best regards I have this question, as well. I'd like to pull recently posted in/updated threads from two separate forums for an "Active Topics" section in a sidebar that displays for every click. Is that possible?
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,323
January 2004
todge
|
Post by Todge on Aug 14, 2022 3:22:15 GMT -8
Hello to all guys, first thanks for all the help you guys give to the community. Saying this, I'm very new at this, and I wanted to put the last threads and recent posts on the sidebar, but I'm not seeing able to do that, any help please? If possible giving me steam by step and with an example because as I said I'm new on this and not being able to display what wanted to, thanks and sorry for this. Any help please, thanks best regards I have this question, as well. I'd like to pull recently posted in/updated threads from two separate forums for an "Active Topics" section in a sidebar that displays for every click. Is that possible? If you are asking what I THINK you are asking, then no, new posts and updated threads can only be displayed on their host forum. It is not possible to collect data from any other forum other than the one you are currently looking at. Sorry.
|
|
inherit
262183
0
Nov 20, 2024 20:09:49 GMT -8
Funkytown
63
September 2020
funkytown
|
Post by Funkytown on Aug 15, 2022 7:32:50 GMT -8
I have this question, as well. I'd like to pull recently posted in/updated threads from two separate forums for an "Active Topics" section in a sidebar that displays for every click. Is that possible? If you are asking what I THINK you are asking, then no, new posts and updated threads can only be displayed on their host forum. It is not possible to collect data from any other forum other than the one you are currently looking at. Sorry. That's unfortunate. Unless linked to from an outside source, don't members already know the updated threads, because they already just clicked into that forum section to check it out? Why display a few of those in the sidebar? Seems a little redundant, no? Wouldn't it make more sense to pull from other forum sections than the one you're currently browsing, so they could gain more popularity, for example? This is what I had in mind: www.canesinsight.com/forums/-/listIf you notice, the sidebar's "Latest Posts" is pulling from several different forum sections, kind of like, "Trending Topics." It'd be nice to pull from various forums, to keep discussion flowing. Certain members only hit up the main forums and kind of ignore the rest. This would help with that.
|
|
inherit
223590
0
May 17, 2023 9:13:21 GMT -8
Kitty Katt
My Username is @kittykatt (with 2 t's in katt)
821
July 2015
kittykatt
|
Post by Kitty Katt on Aug 15, 2022 10:41:14 GMT -8
Funkytown, Perhaps there is a confusion with terminology here. Do you mean "two separate boards" rather than "two separate forums"? - Forum (the whole thing) --- Categories (Main sections - contains Boards) ----- Boards (contained within a Category and contains Threads/Posts) Perhaps there is simply a misunderstanding with the terminology used. Edit: If that is not the case and you do mean two separate forums, then please disregard this post.
|
|