mathias yeremia
mathias yeremia

Reputation: 73

Pagination Laravel 6.x

Iam using customized pagination which is pagination bulma CSS on laravel pagination with laravel 6.x version

Why did I get this little black dot on my pagination??

enter image description here

Upvotes: 0

Views: 136

Answers (2)

Anthony Shoshi Gomes
Anthony Shoshi Gomes

Reputation: 73

Just inspect on pagination li class and make them list-style-type: none;

Upvotes: 0

iizno
iizno

Reputation: 849

According to here : https://github.com/laravel-frontend-presets/bulma

You should replace your published bootstrap-4.blade.php file with this one : https://gist.github.com/Laraveldeep/362490aead2fc4b2fd15c3aae24254cf

Or, try adding this to your css file :

.pagination li {
    list-style-type: none;
}

Upvotes: 1

Related Questions