Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 19, 2015 01:00 pm

Using get_pages() to Create Link Buttons to Your Site's Top-Level Pages: Styling the Buttons

Final product image
What You'll Be Creating

If you followed my previous tutorial, you'll now have a theme on your site (or a child theme) which includes links to your top-level pages in the site header.

I created a child theme of twenty sixteen, and this is how my links are looking right now:

Top level page links in the header - unstyled

In this tutorial I'll show you how to add some CSS to your theme to make those links a bit nicer. Let's start by getting rid of the bullets and adding floats.

Removing Bullets and Adding Floats

Open your theme's stylesheet. If you created a child theme it will be empty, but if you're working with your own theme I suggest you add this styling in the part of your stylesheet where you keep styling for the header.

A recap on the code that outputs the page links (if there are pages to link to):

This means we're targeting a ul element with the top-level-page-links class and within that, li elements with the page-link class followed by a elements (i.e. links).

First, let's remove the bullets. Add this:

Next, let's get rid of the padding on each list item and add a margin-left declaration:

Now refresh your screen and you'll see that the list styling is gone:

Links styled - bullets removed

Next let's get those links floating next to each other. Add this to your stylesheet:

Now your links will be all next to each other:

Links styled - floats added

Next, let's move on to making the links look a bit more like buttons.

Adding Margins, Padding and Backgrounds

To make our links look like buttons, we'll add a margin, padding and a background to the links.

Add this to your stylesheet:

Note that I've only used a margin on the right as I want the left-hand button to align to the left of the page.

When you refresh your screen, your buttons will look more button-like:

Links styled to look like buttons

They're looking much better but need a bit of finesse. Let's edit the color of the text and background so that when someone hovers over the button, it changes color.

Adding Hover Effects

Now let's make those buttons a bit more attractive.

Add two more declaration blocks to your stylesheet, making sure you add these after the declaration block for links you just added:

This changes the color of the links, removes the underline, and changes the color when someone hovers over a link or it's active.

Let's see how this looks on the page:

Link buttons with color styling added

And when I hover over a link:

The button turns light gray when I hover over it

Much better!

Summary

In this two-part tutorial, you've learned how to create links to your site's top-level pages which are automatically generated, and then to style those links using CSS so they look like buttons.

This gives you a nice, prominent way to let your visitors go straight to those pages, and will be useful if you have top-level pages you want to ensure plenty of visitors can access.


Original Link:

Share this article:    Share on Facebook
No Article Link

TutsPlus - Code

Tuts+ is a site aimed at web developers and designers offering tutorials and articles on technologies, skills and techniques to improve how you design and build websites.

More About this Source Visit TutsPlus - Code