• Skip to primary navigation
  • Skip to main content
  • Skip to primary sidebar

I Make Blogging Easier

Start, Grow and Make Money

  • Start Here
    • About Me
    • Contact
  • Categories
    • Affiliate Marketing
    • Affiliate Programs
    • Make Money
    • Blog Traffic
    • WordPress Tips
    • Blogging
  • Shop
    • eBooks
  • Deals
    • SiteGround Coupon $3.95
    • ConvertKit Free Month
    • Tailwind Free Month
    • $5 AWIN Affiliate Network
    • More Blogging Resources
  • Blog

How to Style The Genesis Author Box Without A Plugin

March 17, 2017 by Susan Velez

Last updated on August 1st, 2018 at 06:22 pm

Your author box is it really portraying a great image of who and what you offer? If you haven’t set up your author box, read this step-by-step tutorial. In this tutorial, I will be showing you how to style the Genesis author box without a plugin.

style Genesis author box

I not a huge advocate of installing a ton of plugins. However, this wasn’t always the case. When I first started using WordPress, I would always look for a plugin that would help me accomplish something on my site.

It took several years for me to get the courage to venture into the WordPress files. I guess I was scared that I would break something and not be able to fix it.

You can screw up your site if you don’t know what your doing. But as long as you have a backup before you start messing and tweaking things, you’re golden!

I am NOT a developer, but I love making small tweaks and changes to mine and my clients sites. That’s why I love sharing my tutorials and experiences with you. In hopes of helping you realize that even if you’re not a techie person, you can learn enough to build a business with WordPress.

Follow along and let’s customize the look and feel of our author box. For this demo, I will be using my cloned localhost blog. We are going to learn how to style the genesis author box without a plugin.

Watch Over My Shoulder

If you’d rather watch me as I style the Genesis Author box on my test site, here’s a step-by-step video that will walk you through the process. Of course, you can scroll to the bottom and follow my screenshot tutorial with pictures.


 

If you need help understanding WordPress, I’ve compiled a great list of WordPress tutorials on this blog that will make it easy for you to understand WordPress better. If you’re ready to rock your WordPress blog, then be sure to visit my WordPress tutorials for beginners

Let’s get started..

How to Style The Genesis Author Box Without A Plugin

Styling your author box can easily be done by using HTML and CSS. If you’re unsure of how to get started with

Note: All your HTML links will be placed in your author box. CSS will be placed in your child theme CSS file.

Here is what you the default author box looks like on the Centric Pro theme before any changes.

Genesis author box

Once you’ve decided if you just want to add your author box to your sidebar or below your posts, you can begin styling it.

Open up your favorite text editor. and browse to your child theme CSS style sheet.

Caution: Before making any type of changes to any of your WordPress files, make sure that you have a current backup. If you need to know how to make a backup, read my tutorial.

Here is the code that I added to the bottom of my style sheet in my child theme.

my author box color styles

Here’s what my author box looks like now.

green background

So let’s break down this code so you can understand what exactly I did to get it to look like this.

What I Did To Customize The Look Of My Author Box

Adding Background Color

/*STYLES FOR STYLING THE AUTHOR BOX ON GENESIS*/
.author-box{
background-color: #68A725;
padding: 23px;
color:#fff;
}

This code changes the background color on my author box. You can replace the hex color on the background color with the color of your choice. If you are unsure of what the hex number is, visit this site.

padding: 23px adds padding to my author box. Before the padding my author box looked terrible because everything was bunched up on the margins.

Take a look at how it looks like without the padding.

author box without padding

This is on my demo blog, so you won’t see it on my live blog. I love playing around with my blog on my localhost, it allows me to test and tweak things.

This is one of the reasons I recommend setting up a clone of your live blog on your localhost.

Changing Link Colors In Author Box

/*changing the link colors on the author box*/
.author-box a{
color: #000 !important;
}

When we set up the author box, I showed you how to link to your social profiles. I used CSS to make those links in the author box black.

Change Link Colors when Hovered Over

Maybe you want to have the links change color whenever someone hovers over them. Add this code to your CSS child theme.

/*changing the link color when hovered over*/
.author-box a:hover{
color: #98FB98 !important;
}

Just be sure to change the hex color to your preferred color.

Change Title Color and Font

This code makes it easy to change your title and font style.

/*styling the Author Box Title*/
author-box-title
font-size: 22px;
color: #fff;
font-family: ‘Open-Sans’;

The code above changes the title color from my blue color to a white. I’ve also made the title bigger and changed the font style.

You can see, it’s extremely easy to style the Genesis author box.

Here are some other styles you can use to take this further.

Add A Text Decoration To Your Links

/*Underlining the links in the author box*/
.author-box a{
text-decoration:underline;
}

This underline all your links in your author box.

Change Font Size of Bio Paragraph

/*changing font size in author box description*/
.author-box-content{
font-size: 22px;
}

This is what my new author box looks like with a 22px font size.

final author box styles

 

You could take this even further and increase the margins between your avatar and text by adding this.

/*Adding some margin to the avatar*/
.author-box .avatar {
margin-right: 1.9rem;
}

my customized author box

Here is my author box looks like after I’ve added all the styles. You won’t see this on my live blog as I’ve demonstrated this on my localhost.

Genesis Quick Links

Once you become a Genesis user, it’s important to know how to find the help you need quickly. I’ve put together this list to help you find everything you need quickly.

A Beginner’s Guide: This guide will help you learn the ins and outs of using the Genesis framework. The best part is that it’s free.

Child Themes: Take your time and browse all the available child themes you can choose from. If you’re buying an individual theme, you won’t get access to all their themes.

StudioPress Pro Plus All-Theme Package: You understand that your blog is your business. It’s important for you to have access to over 90 child themes you can use in your business without paying another penny.

Genesis Features: Read through all the features before you make a buying decision. There’s nothing wrong with taking your time to do some research before you make a buying decision.

Visual Hooks Guide: Visually see the hooks in your Genesis theme. (this is for the advanced users or people who want to get more indepth with Genesis)

Genesis Specific Plugins: Created by StudioPress specifically for Genesis. I have used Genesis Simple edits (need to know how to work with plugins)

StudioPress Sites: Use this to get free migration to their managed WordPress hosting.

StudioPress Forums: Need help with a specific child them? Don’t hesitate to ask for help in the forums. I’ve used the forums to get answers to several of my questions.

Become a StudioPress affiliate: Love Genesis so much, make money any time someone uses your link to purchase Genesis.

 

Final Take Away

Now that you’ve learned how to style the Genesis author box without a plugin, you can see how easy it is to do. Of course if you don’t feel comfortable using CSS, feel free to use a plugin. Here’s an easy to use plugin if you don’t feel comfortable adding CSS to your stylesheet.

If you decide to do this on your own using CSS, just add all your code at the very bottom of your child theme’s CSS style sheet.

Read this tutorial if you still need to set up your author box on Genesis. If you don’t know how to get your Gravatar set up, read this.

Did you customize your author box? Stop by and let me know, I’d love to know what you did to style it. Did you use a plugin? If so share which plugins you would recommend.

 

Filed Under: How To, WordPress Tips

About Susan Velez

Hi! I'm Susan welcome to my blog. Are you ready to use the Internet and a computer to change your finances? I share tips to help you make money online through blogging, side hustles and other non-traditional methods learn more Twitter, Facebook, Pinterest and YouTube

Primary Sidebar

Follow Me On

Twitter Followers
follow
Youtube 283Subscribers
subscribe
Pinterest Subscribers
subscribe
RSS 19Subscribers
Subscribe

Hi! I'm Susan welcome to my blog. Are you ready to use the Internet and a computer to change your finances? I share tips to help you make money online through blogging, side hustles and other non-traditional methods learn more Twitter, Facebook, Pinterest and YouTube

What Are You Looking For?

COPYRIGHT

I love it when you share! Please keep in mind that all images and text on this site are property of Susan Velez. Feel free to use one or two photos provided that a link back to my original post. Please do not remove any watermarks, crop, or edit any of my images without first obtaining written permission from me. Pinning is always welcome and appreciated! Thank you!

Copyright © 2025 · Susan Velez · Powered by WordPress and the Genesis Framework | Affiliate Disclosure | Privacy Policy


Susan Velez website is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed a means for sites to earn advertising fees by advertising and linking to Amazon.com

Copyright © 2025 · Wellness Pro on Genesis Framework · WordPress · Log in

X
Share this
Subject:
Message:
Ajax loader