• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here:Home » How to Reposition Breadcrumbs in WordPress Genesis & Stylize?

By Abhishek Ghosh April 10, 2025 6:53 pm Updated on April 10, 2025

How to Reposition Breadcrumbs in WordPress Genesis & Stylize?

Advertisement

It is a difficult task and that is why there are 100s of articles on this topic. It is a problematic task probably because the priorities set in the child theme differ or some other plugin or settings or template prevents executing our thought. You can show/hide breadcrumbs from Genesis > Theme Settings > Breadcrumbs. Commonly we want to show the breadcrumbs on the post pages only. In that case, you have to tick mark the “Breadcrumbs on Posts page” and ” Breadcrumbs on Single Post page” options. I do not know why there are two options for the same thing.

How to Reposition Breadcrumbs in WordPress Genesis & Stylize

 

What is the Easiest Way to Reposition Breadcrumbs in WordPress Genesis?

 

The easiest way is to use the official method to remove and then mention the hook to reposition it, for example:

Vim
1
2
3
// Display breadcrumbs only on single post pages, just above footer widgets
remove_action( 'genesis_before_loop', 'genesis_do_breadcrumbs');
add_action( 'genesis_after_entry', 'genesis_do_breadcrumbs', 998 );

If you use the Genesis Simple Hooks plugin (you must use it, it is a mandatory plugin for Genesis customization), then you’ll know the names of the hooks. It is a kind of trial and error. That is how I found genesis_after_entry works.

Advertisement

---

I wanted the breadcrumb near the footer. You can see it in action on my health website (in Bangla language) abhishekghosh.com.

Add the above snippet to your child theme’s functions.php file.

 

How To Stylize Breadcrumbs in WordPress Genesis and Add Font Awesome Icon?

 

First, you have to load the Font Awesome CSS file in your theme. I am not explaining that part. You can simply load it as a script or use the wp_enqueue function. This is an example of working CSS in my case:

Vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
.breadcrumb {
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin: 2rem auto 1.5rem;
  max-width: 960px;
  font-size: 0.95rem;
  color: #333;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
 
.breadcrumb a {
  color: #0073aa;
  text-decoration: none;
}
 
.breadcrumb a:hover {
  text-decoration: underline;
}
 
.breadcrumb span {
  padding: 0 0.3rem;
  color: #888;
}
 
/* Add Font Awesome Home Icon before the first link */
.breadcrumb a:first-of-type::before {
  content: "\f015"; /* Font Awesome 'home' icon */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 6px;
}

Breadcrumb will be now inside a light grey box with rounded corners. The first breadcrumb link (“Home”) will show a Font Awesome home icon. This applies only to the .breadcrumb div Genesis outputs — no markup changes are needed.

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to How to Reposition Breadcrumbs in WordPress Genesis & Stylize?

  • Nginx WordPress Installation Guide (All Steps)

    This is a Full Nginx WordPress Installation Guide With All the Steps, Including Some Optimization and Setup Which is Compatible With WordPress DOT ORG Example Settings For Nginx.

  • Changing Data With cURL for OpenStack Swift (HP Cloud CDN)

    Changing Data With cURL For Object is Quite Easy in OpenStack Swift. Here Are Examples With HP Cloud CDN To Make it Clear. Official Examples Are Bad.

  • Checklist to choose a perfect WordPress theme

    We are providing a thorough detailed checklist those are need to be checked, before selecting a Wordpress theme.

  • Steps To Install Nginx Plus on Ubuntu Server (HP Cloud)

    Here Are the Steps To Install Nginx Plus on Ubuntu Server Running on HP Cloud. Nginx Plus is the Paid Version of Nginx with Extra Features.

performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

vpsdime

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Cloud-Powered Play: How Streaming Tech is Reshaping Online GamesSeptember 3, 2025
  • How to Use Transcribed Texts for MarketingAugust 14, 2025
  • nRF7002 DK vs ESP32 – A Technical Comparison for Wireless IoT DesignJune 18, 2025
  • Principles of Non-Invasive Blood Glucose Measurement By Near Infrared (NIR)June 11, 2025
  • Continuous Non-Invasive Blood Glucose Measurements: Present Situation (May 2025)May 23, 2025
PC users can consult Corrine Chorney for Security.

Want to know more about us?

Read Notability and Mentions & Our Setup.

Copyright © 2026 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy