inherit
212350
0
May 17, 2018 6:57:55 GMT -8
Bladehawk
35
August 2014
bladehawk
|
Post by Bladehawk on Aug 18, 2014 10:06:56 GMT -8
Hello,
I hope I'm just overlooking something obvious, here. I've figured out how to change the font style of the Prev and Next pagination buttons, but is there any way to change the text itself? ?/? would be nice, or maybe replacing the text with images of arrows.
Thanks.
|
|
#eb7100
33409
0
1
Nov 24, 2024 4:27:37 GMT -8
Brian
48,130
November 2004
smashmaster3
|
Post by Brian on Aug 18, 2014 14:49:37 GMT -8
Hi, Bladehawk. Add this to Structure > Headers & Footers > Global Header.
|
|
inherit
212350
0
May 17, 2018 6:57:55 GMT -8
Bladehawk
35
August 2014
bladehawk
|
Post by Bladehawk on Aug 18, 2014 18:45:58 GMT -8
Excellent Brian! Thanks.
|
|
inherit
212350
0
May 17, 2018 6:57:55 GMT -8
Bladehawk
35
August 2014
bladehawk
|
Post by Bladehawk on Aug 20, 2014 13:45:02 GMT -8
Hmm... well, it WAS working, but now I notice that when I try to use the Next button, the arrow character is appended to the URL in place of the page number. I added a plugin since it last worked, but don't think that should've affected it. When I use the prev button, it goes to the first page of the thread, but still appends the left-facing arrow to the URL. URL when clicking the Page 2 button: godwarsx.proboards.com/thread/24/god-wars-test?page=2URL when clicking the Next button from Page 1 as it appears in my address bar: I'm using Chrome, but can see if the problem happens on other browsers as well. The plugin I added was Forum Tooltips.
|
|
inherit
212350
0
May 17, 2018 6:57:55 GMT -8
Bladehawk
35
August 2014
bladehawk
|
Post by Bladehawk on Sept 7, 2014 5:57:45 GMT -8
Hey, it's marked as resolved but is there any info on this? Not a pressing issue, but still something I'd like to fix haha.
|
|
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 Sept 7, 2014 20:27:17 GMT -8
The way Proboards wrote the code for pagination clicks means if it doesn't say "next" or "prev" then it is assumed to be a number and used in the url. You can probably get it done with pure CSS however
.ui-pagination-page.ui-pagination-prev a,.ui-pagination-page.ui-pagination-next a{ width:0; height:0; overflow:hidden; padding:0!important; } .ui-pagination-next:after {content:'?';font-size:1.8em;} .ui-pagination-prev:before {content:'?';font-size:1.8em;}
Still might need some tweaking but that should get you started and if you want to use images instead then replace the arrow symbols with url(IMAGE_URL_HERE)
|
|