Jump to content

A Slight Pagination Issue


DavidHenson

Recommended Posts

I used the w3schools pagination on these pages and I love it. Works great. It's a simple HTML page for text only / print. 

I used the same on these pages and it works and looks good except for that the active buttons always have a - (minus symbol). 

Can anyone help me with that? I want to get rid of the unwanted symbol and can't figure out how. 

I sure would appreciate any help. 

Link to comment
Share on other sites

This line of your CSS is causing that:

.active:after {
  content: "\2212";
}

I'm not sure why it's there. If it's being used for a different part of the page, then you'll have to use a more specific selector which doesn't apply to the pagination links.

  • Thanks 1
Link to comment
Share on other sites

1 hour ago, Ingolme said:

This line of your CSS is causing that:

.active:after {
  content: "\2212";
}

I'm not sure why it's there. If it's being used for a different part of the page, then you'll have to use a more specific selector which doesn't apply to the pagination links.

Excellent! That was for my accordion. I took it out with no effect that I can see with the accordion and the problem was solved. 

Thank you so very much, I really appreciate that.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...