can you tell me how to change the link color at the bottom of the drupal pages? I mean the the links that display next, previous and page numbers? thanks very much.

Comments

bradlis7’s picture

Category: task » support

I'm going to assume you know a little about CSS.

All links are under "#pager". If you want to change all the link colors, use "#pager a". There is also ".pager-current" that is the current page (it is not a link).

Add this to the style.css in the folder for the color you're using. Blue is in the base folder.

Here's an example.

#pager a {
    color: cyan;
}
bradlis7’s picture

Assigned: Unassigned » bradlis7
Status: Active » Fixed
Anonymous’s picture

Status: Fixed » Closed (fixed)