inherit
256951
0
Mar 10, 2021 20:30:26 GMT -8
newyork
2
November 2018
yoms
|
Post by newyork on Feb 19, 2021 22:50:22 GMT -8
Website: wo ai ni
The first paragraph of everything on the site doesn't properly space. Even when you do a double <br><br> or even [break][break] after ,depending on the coding required, it will act as if only one entered was placed. Really not sure what could be causing the first paragraph to not space from the second paragraph properly. and it's literally only just the first and second paragraph, all the others space properly. Examples >> example 1example 2
|
|
inherit
252032
0
Apr 26, 2024 23:51:41 GMT -8
Retread
Tribbial Pursuit.
5,017
January 2018
retread
|
Post by Retread on Feb 20, 2021 8:22:11 GMT -8
Hi newyork I suspect the problem is being caused by the Awards System (3.0.7) plugin on your forum. To confirm this, from your Admin panel navigate: Admin Home> Plugins> ManageThen un-tick the checkbox to the left of Awards System (3.0.7)This will disable (but not remove) that plugin. Then navigate to any post that had been displaying the behavior you described. Does it look normal now? If so, then we've narrowed things down considerably.
I believe that plugin is creating this CSS rule: br:nth-of-type(2) { display: none; } And that's what's preventing the second break in any container from being displayed. I don't know if this can be corrected in the plugin settings or if you will need to consult with the plugin author. The Help Thread for that plugin can be found here: Awards System (3.0.7)
|
|
inherit
256951
0
Mar 10, 2021 20:30:26 GMT -8
newyork
2
November 2018
yoms
|
Post by newyork on Feb 20, 2021 13:50:56 GMT -8
aAAAA, thank you so much Retread, that was exactly the issue. temporarily disabling the plugin did in fact cause the problem to cease. looking at it, it allows for specific styling that includes that. #profile_awards0 br:nth-of-type(1), br:nth-of-type(2) { display: none; }
It wasn't styled properly, and so the br:nth-of-type(2) was applying to everything rather than be applied to just #profile_awards0 only. Fixing that css seemed to do the trick. Thank you so much!! Just in case anyone wants to see the correct css. #profile_awards0 br:nth-of-type(1),#profile_awards0 br:nth-of-type(2) { display: none; }
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,018
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Feb 20, 2021 18:14:30 GMT -8
Here is further explanation from the plugin's author When I updated the Awards Plugin to allow the grouping of awards the code erroneously added 2 blank lines between the main award title and the first group name, that CSS snippet was meant to remove the first two blank lines from the awards cell only, but I appear to have forgotten to restrict the removal of the secon line. ...you can fix this by replacing the line of code ...with this.. #profile_awards0 > br:nth-of-type(-n+2) { display: none; } Sorry about that.
|
|