How to Combine WordPress Themes in Thesis
Combine elements from past themes you've used on a WordPress blog to implement them into the Thesis theme. Thesis is a premium WordPress "framework" that gives you the flexibility to customize the look of your WordPress blog, with built-in search engine optimization and streamlined code that results in fast-loading pages. Adding elements of other themes to the Thesis stylesheet implements them within your blog.
Instructions
-
-
1
Log in to the "File Manager" for the service you use to host your blog -- "BlueHost" and "GoDaddy" are two common choices for WordPress bloggers who self-host -- and navigate to the "wp-content" directory. Download the .css style sheet for the themes whose features you want to implement within Thesis.
-
2
Sign in to WordPress. Scroll down to the "Thesis" pane on the left side of the interface, then choose "Custom File Editor." The Thesis stylesheet, named "custom.css," appears by default.
-
-
3
Paste elements from stylesheets of other themes into the stylesheet. Open a new browser tab or window and open your WordPress blog.
-
4
Right-click on the element to which you want to apply a particular style directive, then click "Inspect Element." Locate the name of the element -- which is behind the <div-id=> tag.
-
5
Return to the WordPress dashboard and change the name within the style sheet to make sure changes are applied correctly. If a stylesheet section from another theme looks like this:
.post-area {background:#fff; repeat:no; border:1px}
But Thesis has named the section to which you want to apply it "content-area," change the section of the stylesheet so it looks like this:
.content-area {background:#fff; repeat:no; border:1px}
-
6
Click the "Big Ass Save Button" once you have finished applying changes. View the blog in a new tab or window to confirm you applied changes correctly.
-
1