Hi everyone,
I am using the StudioPress Monochrome theme for my website: akiyas.jp
Here's a link to the Monochrome demo from StudioPress: https://demo.studiopress.com/monochrome/
In the footer area, it has a black and blue section. In the Widgets panel, it includes widget areas for “Before Footer CTA” and “After Entry”. Widgets in the After Entry area will display after single entries.
I would like to create a footer area like this site (WP101.com). I have tried a few footer and code snippet plugins but can't get them to work. Maybe I need to have some custom code written to add a new widget area to the footer? Any help or advice would be great. Thanks!
1 Answers
Hi David,
I'm familiar with the Monochrome theme, and this site currently uses another StudioPress theme that is no longer available for purchase.
You're right... in order to create a footer area like the one you see below, you'll need to edit your theme. And that does require coding expertise — specifically, experience with the Genesis theme framework, which all StudioPress themes utilize.
There are three parts to the project:
- First, you'll need to add some code to the
functions.php
file in your theme which will tell WordPress to create a new widget area. - Next, you'll need to add some CSS to the
style.css
file in your theme to add the formatting of any widgets you add to this area: the layout, positioning, heading, text, link color, background color, etc. - Finally, you'll be ready to add some widgets to your new widget area, which will show up in the Widgets panel.