Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Apr 3, 2023 4:13:17 GMT -8
well, as far as i can tell, you didn't post an actual theme request in the board i linked to, so no 🤷🏽♀️
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Apr 2, 2023 17:34:57 GMT -8
Just wondering how much longer will it be before my request can be filled. Thanks No clue. This board isn't particularly active and is run on a volunteer basis. There's nothing preventing your request from being filled from a technical perspective, now that you've edited the information, just a person willing and able to do it. As I mentioned in my first reply, I'm unable to help with this personally, so it's up to someone else.
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Apr 1, 2023 22:22:56 GMT -8
Why did they Nuke IMDB v2.2? 10,000+ posts Nuked. Why? An April Fools Day joke? Again, the removal of the forum was done by the main admin (/user/1) account. Whether this was done by the forum owner or if their account was compromised remains to be seen; however, only the forum owner can receive assistance from PB on this issue, in the manner I previously outlined. ProBoards cannot assist with identifying the motivation behind the action. A forum owner may remove the forum at any time and are not required to provide a reason for deletion.
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Apr 1, 2023 18:10:53 GMT -8
The error that is appearing simply means that the forum was taken offline by someone with access to the main admin's account (whomever was /user/1, not just any admin or staff account).
Whether this was done intentionally by the owner, or by someone with malicious access to that /user/1 account, would be almost impossible to tell.
Ultimately, there's nothing anyone here can do to help you, because only the forum owner can request assistance in these matters. If the owner did not delete the forum of their own accord, they'll need to post here on support with an account that uses the same email address associated with the owner of the imdb2 forum.
Please note: if the forum is restored, it will be in the same state as it was when it was deleted; so, if any content was removed (posts, members, etc) prior to deletion, then that content is gone entirely.
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Mar 31, 2023 18:19:58 GMT -8
Adding more height to the slide version is possible! Try this at the bottom of your stylesheet: Your code works to increase the height of the container, but it increases the height of both animations. I'm looking for something to specifically target the slide animation. When I switch between the two animations, I don't want the news bar to change size. I mentioned this in the other thread, but I tried adding the following to my CSS and it works, but only when there is a headline that wraps to two lines. When there is a headline that takes up only one line, the text is positioned too high in the bar. This leads me to believe that I'm looking for something like this, possibly still targeting "itemSlide", but I don't have it figured out to work how I want it to work in all situations. #news .items .itemSlide { padding: 3px 10px; } Honestly, I've kind of hit the limit of my ability, time-wise, to assist here. This just requires a little more investigation than I have to spend due to work and other obligations. It's totally doable, but the way that the items are nested combined with your need to have it simultaneously apply to both versions is going to take time. Sorry about that!
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Mar 31, 2023 14:41:00 GMT -8
AH, okay my bad! I misunderstood the question ;~;
So this is just my personal hypothesis, but I believe the design intent was that if people are using the "slide" option that their content is shorter, whereas "flip" would wind up being more suitable for longer messages. Again, just a hypothesis, but it's based off of the behaviour I can see when switching between the two. So, if that was the intent, then the way the CSS is constructed for "slide" would assume shorter messages meaning the bar can be shorter with more appropriate padding for one-liners, whereas the CSS for "flip" would assume longer messages and make the assumption that all messages are long with the appropriate padding (leading to "extra" padding for shorter messages).
Adding more height to the slide version is possible! Try this at the bottom of your stylesheet:
/* Add padding to "Slide" version of News Feed */ #news { padding-top: 20px; padding-bottom: 20px; }
The reason your changes didn't work as intended is because you weren't targeting the correct element; you're targeting all of the nested elements within the news div, which wouldn't impact the height of the parent container. Change 20px to suit whatever padding you think is appropriate.
Please be aware that the above changes will appear to "break" the news feed if your font size for the element is larger than about 25px, and any changes in font size will wind up needing both a) adjustments in padding, and b) alteration of the line-height for the text within the message element.
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Mar 31, 2023 2:33:43 GMT -8
1. Answered in your other thread. This is intentional by PB, the flip display will always take on the height of what is needed to accommodate the longest message because otherwise the forum would constantly be jumping up and down as the feed resizes in height for every news item.
2. As mentioned in your other thread, I really recommend appending your changes to the bottom of your stylesheet instead of making the changes directly in the corresponding default PB styles. It will be far easier to diagnose what changes were made and how they impact the rest of the CSS — this is, as the name suggests, "cascading", so changes listed at the bottom will override the default PB style and show what specifically was changed instead of requiring folks to sit and compare context-less CSS. :P
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Mar 30, 2023 7:51:49 GMT -8
Kami Ok, so I've got my news bar back to a manageable state. The only weird thing I'm running into now is that the height of the news bar changes depending on whether I have the "slide" animation or the "flip" animation selected. The slide animation yields a shorter bar, the flip animation yields a taller bar. This occurs whether there is a single line of text or enough text that it wraps to a second line. Almost like there's a difference in padding. Is this normal? Is there a fix for this? EDIT: I found out that the slide transition is a different class than the flip transition (flip seems to be the default). I added 3px padding to the top and bottom as follows and it works for when there is only one line of text. #news .items .itemSlide { padding: 3px 10px; } A new problem now, only when choosing the slide transition. In a situation where I have two separate news items to display, one of them being a single line of text and the other being long enough to wrap to a second line, the padding is thrown off again. It looks like it has about 3px of extra padding on the bottom now, moving the single line of text up. And on the news item that wraps to a second line, the first line gets cut off prior to wrapping. Example:News feed text: The Discord is now on the home page of our forum, drop in and leave a comment! No need to have a Discord account, you can chat as a guest!What displays in the news feed with the slide animation chosen: The Discord is now on the home page of our forum, drop in and leave a comment! No need to have a Discord account, you as a guest!The words "can chat" extend past the end of the news feed box so they're cut off. This only happens when choosing the slide transition. Any tips? Is my CSS just butchered? /* News Bar */ #news { color: @nav_tree_color; font: @nav_tree_font; text-decoration: @nav_tree_decoration; z-index: 9; height: 22px; background-color: @nav_tree_background_color; overflow: hidden; margin: 0 auto 10px; border: @nav_tree_border_width @nav_tree_border_style @nav_tree_border_color; .rounded-corners(@nav_tree_border_radius); } #news .items { height: 22px; position: relative; overflow: hidden;} #news .items > div > div {font-size: 100%; padding: 0px 10px; text-align:justify; line-height: 22px; } #news .items a {font-weight: bold;} #news .items div img { vertical-align: text-bottom; } #news .items .itemSlide { padding: 3px 10px; } #news .nav { background-color: #3f3f3f; float: left; background-position: center; } #news .nav > span { width: auto !important; border-width: 0px 0px 0px 0px; border-style: solid; border-color: transparent; cursor: default; float: left; display: inline-block; padding: 0px 3px; height: 22px; } #news .nav > span.title { font-size: 130%; color: #ffffff; text-align: center; display: inline-block; height: 22px; padding: 0px 10px; line-height: 22px;} #news .nav .arrow.left { .rounded-corners(@nav_tree_border_radius, 0, 0, @nav_tree_border_radius); padding-left:15px; } #news .nav .arrow.right { padding-right:15px; } #news .nav .arrow.left span { border-right-color: #ffffff; } #news .nav .arrow.right span { border-left-color: #ffffff; } #news .nav .arrow.left:hover { border-right: 0px solid #3f3f3f; background-color: #333333; } #news .nav .arrow.right:hover { border-right: 0px solid #3f3f3f; border-left: 1px solid #3f3f3f; margin-left: -1px; background-color: #333333; } /* #news .nav:hover { background-color: @nav_tree_hover_background_color; } */ /* #news .nav:hover > span { border: @nav_tree_border_width @nav_tree_border_style @nav_tree_border_color; border-width: 0px @nav_tree_border_width 0px 0px; } */ You can see the current problem at the test forum: matte.boards.net/ This is expected behaviour, but only because of an assumption that PB makes here (not the organisation, but the software as it was written). If you have a news item that spans multiple lines, the textbox will adjust to accommodate the height of the longest line for all news items. The reason for this is that the way the software is written, it assumes you would not want that box shrinking and expanding every few seconds, as it would visually shift the board up and down, repeatedly, with no way for a user to stop it. As for why the text is weird / cut off / not appropriately padded, I'm so sorry but your CSS is just really funky. On my default test forum (no CSS changes), I do not have this experience. What it looks like is you keep editing the default news bar over and over again and are losing track of the changes you made; I know this isn't an ideal response, but there have been so many changes to this section that I just recommend looking at the default PB theme (for what it's worth, I recommend having a default PB theme as backup for situations like these) and copy the News Bar section of the CSS and replace what you have on your custom theme. You could try to reverse engineer it, but for me that's just a lot of work that I wouldn't want to do if I were in your shoes. PS: If it were me and I was making experimental changes, I would avoid touching ANY of the default PB CSS and instead append my changes (with commentary for easy identification purposes) at the bottom. Since CSS is cascading, anything on the bottom will overwrite the styles higher up, so you'll still see the effects.
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Mar 28, 2023 20:09:11 GMT -8
Thank you for the timely response! Unfortunately updating the plugin did not resolve the issue. We also removed all plugins that we were using and the problem continued. Have you checked your main & global header/footers? It is possible there may be a code there causing the issue. Other troubleshooting thoughts: - be sure to clear your cache & cookies now that the plugins are disabled; it's possible that you're loading a cached page. - check to make sure any images (if this issue occurs globally, anything that appears globally, or on specific pages if the load issue is on specific pages) aren't hotlinked from anywhere that may be throttling access If none of these help, I'll take another look in the morning!
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Mar 28, 2023 10:51:58 GMT -8
Forum URL: 10000islands.proboards.com/Hello! On our forum, we use images which are currently hosted on our own server. In the near future we'll be moving to another image hosting server. What we are wondering is there a global find and replace function wherein we can edit the link in posts simultaneously, or will these have to be edited one at a time. For example: Current images: ourimageserver.example/123.img We'd just want to change the "ourimageserver.example" in every post. I've had a look but can't see anything like that on the forum. Thanks! There is no global find and replace BUT you could POTENTIALLY use the censored words list ? This would only work, though, if the file paths and file names are otherwise the same, so that imagehost1.com/imagename1.jpg would then become newhost.com/imagename1.jpg If the paths / images names aren't otherwise identical, then you'd have to manually replace each URL.
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Mar 28, 2023 9:14:16 GMT -8
gb9454 - I just wanted to pop in again and clarify what happened here; this is based on Chris's findings earlier in the thread, just hopefully distilled down in a way that makes more sense if you're unfamiliar with coding. The above image shows the coding that's applied to your forum. Specifically, it seems this is installed in Admin > Structure > Headers and Footers (likely in "Global"); the code that is being pointed out in the red is what allowed you to copy/paste previously. Based on previous posts and how they are formatted in HTML on the page, Chris deduced that this particular code was responsible for allowing that functionality. While we do not know for sure why this stopped working, it's possible that something changed — not the code specifically, but how what the code used to "talk" to handles things. Because the code can no longer communicate with the WYSIWYG (What You See Is What You Get, AKA the 'preview' editor) as it previously did, the functionality for pasting in an image disappeared. This would not be a retroactive effect (which is why older posts did not disappear) but any posts created moving forward would not have the capability to parse these images. You mentioned that you were previously copy/pasting from Google Drive, before you switched to One Drive. It's probably unnecessary to do that, since the problem wasn't with the method you were using, but rather that the script that allowed the functionality stopped working. So to sum up: you were able to do it before due to, as I initially suggested, the presence of a script on your forum (plugins are just scripts with a user interface). The script broke, for some reason, and so the functionality disappeared. I hope that helps explain why you were able to do it before, and why you can't now? As an aside: truthfully, the method you've adopted now (uploading to a free host, and then using the generated image URL) is probably the best, most reliable method of getting pictures to appear on the forum.
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Mar 27, 2023 15:38:45 GMT -8
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Mar 27, 2023 11:08:46 GMT -8
Test forumKami I have if (I===4){ break} and that seems to do the trick for the code but how can I get the UI of setup to only produce 4 slots. I am... still not entirely sure what any of this means, I apologise. (I===4)( break) is not proper template syntax, so I'm not totally sure what this is referring to. The only thing I can think of that involves 'loops' would be a foreach loop in the template, but it doesn't look like it'll be applicable here. Sorry, to be more specific, can you answer the following questions: - What does "loop" mean to you? - What "UI" are you referring to, and where is it located? - What is the purpose of the UI that you are displaying? - What is the UI "asking"?
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Mar 27, 2023 7:15:17 GMT -8
How can I get the loop to loop 4 times only? Also only have the UI section only ask 4 times? Thanks in advance. Can we have a forum URL? Also, can you be more descriptive in what you're asking for / attempting to do?
|
|
Kami
Forum Cat
Posts: 40,201
Mini-Profile Theme: Kami's Mini-Profile
#f35f71
156500
0
Offline
Jul 24, 2021 11:48:29 GMT -8
Kami
40,201
July 2010
kamiyakaoru
Kami's Mini-Profile
|
Post by Kami on Mar 26, 2023 16:20:24 GMT -8
Forum URL: beyondhallows.proboards.com/Good evening! We are in the process of restoring an old board that we originally set up in 2015. Everything is working fine with the exception of one frequent issue where pages will hang while loading, sometimes taking as long as three or four minutes to completely load. This is impacting different functionalities of the site, including the use of tabs (e.g. one cannot switch between the Preview and BBCode tabs while the page loads) and the ability to switch between forum accounts and settings as the toolbar appears to load in last. We initially believed this was an issue with our code or an out of date plugin, but the issue persists across different codes and all plugins are up to date. It also is not occurring on any other Proboards site that I have visited, including one with the same code. I've attached screenshots of the issue. The bottom image is the site hanging on a refresh. Notice how the font shifts between serif to sans serif once the site has fully loaded. Additionally the toolbar cannot be accessed in the bottom image. Any help or advice would be appreciated. Thank you for your time! There is a script hanging on your forum and the reason for this is that the script is using a reference to pb_action which is undefined; the same script seems to also be timing out due to inherent browser protections. It looks like this is the style tags plugin by iPokémon. Based on what I'm seeing y'all are running the 2.1.1 version of this plugin, when the most recent version is 2.3.2. I'd update the plugin, and that should fix the issue. Let us know if it doesn't!
|
|