I will no longer be posting tutorials to this site. If you want to see other tutorials by me and want to request some please visit my site at http://www.shaunguarini.com . You can find all of the tutorials posted here and many more. Cheers.
ATTENTION: ALL OTHER TUTORIALS WILL BE POSTED TO SHAUNGUARINI.COM
Published August 8, 2011 Uncategorized Leave a CommentHow to Widen Page Area
Published July 31, 2011 Uncategorized Leave a CommentTags: area, custom, increase, page, theme, widen, width, wordpress
Finished Look:
This will be your website with the new widths in place.
Go to:
Dashboard / Appearance / Editor / style.css
Code:
.columns-two #page {
width: 900px;
}
.columns-two #primary {
position: top left;
width: 600px;
padding: 10px;
}
Back End Example:
Your dashboard should look something like this.
How to Make Your Banner (Header) a Link
Published July 31, 2011 Uncategorized Leave a CommentTags: banner, custom, header, home, link, page, theme, wordpress
This tutorial will help you turn your banner into a link by editing the header.php file. Most sites use this as a convenience for visitors helping them navigate back to the home page.
Finished Look:
The highlighted section will be a link to your chosen URL.
Go to:
wp-content / themesĀ / k2 / header.php
Scroll to around line 38 and you should see this code <div id=”header”>. Replace this code with the one below.
Code:
<div id=”header” role=”banner” onclick=”location.href=’http://www.YOURDOMAINHERE!!!.com/’;” style=”cursor: pointer;”>
Back End Example:
Your header.php file should look something like this.
TIP: CSS Background Reference
Published July 30, 2011 Uncategorized Leave a CommentTags: background, css, custom, edit, guide, properties, reference
TIP:
Use this as a general guide when editing your background. Every time you use another property it will change your theme making it unique. To learn more about CSS click here.
CSS Background Properties:
- background
- background-attachment
- background-color
- background-image
- background-position
- background-repeat
- background-clip
- background-origin
- background-size







How to Remove ‘Comments Are Currently Closed’ in WordPress
Published July 30, 2011 Uncategorized Leave a CommentTags: closed, comments, currently, custom, delete, remove, theme, wordpress
If you choose to disable your post comments WordPress leaves behind some ugly text in that space. This technique will remove the ’0 responses’ and ‘comments currently closed’ text from your post footer.
Finished Look:
The highlighted section will be removed.
Go to:
Dashboard / Appearance / Editor / style.css
Code:
.comments {
display:none
}
Back End Example:
Your dashboard should look something like this.