Forum Replies Created
-
AuthorPosts
-
Christopher HarrisMember
The easiest way is to use the Genesis simple edits plugin. https://wordpress.org/plugins/genesis-simple-edits/
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberI use Genesis Simple Sidebars to create different sidebars.
http://wordpress.org/plugins/genesis-simple-sidebars/
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberMM-
Please provide me with you a link to your site.
Thanks,
Christopher
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberChristopher HarrisMemberIf you lack php skills, try the Simple Edits plugin - http://wordpress.org/plugins/genesis-simple-edits/.
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberTry
#title-area { background: url(images/logo.jpg) no-repeat center center; }
Also, it would be helpful if you provided a link to your site. I could offer better guidance.
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberYou will have to create a new widget for the site the other sidebar you want to place it in then add it's unique is to to you CSS and then it will be styled the same.
Using the same sample code from before you would do this to have the widgets styled the same for your different sidebars:
#text-1, #text-2 { padding: 0; background: black; }
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberTo create a page template without the primary navigation for your theme create a php file with the following code and add it to your theme folder. Name the file something like
page-nonav.php
<?php /* Template Name: No Primary Nav Page Description: A page template that removes the Genesis primary navigation. */ remove_action( 'genesis_after_header', 'genesis_do_nav' ); genesis();
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberI use simple sidebars to control which widgets appear on which pages...
http://wordpress.org/plugins/genesis-simple-sidebars/
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberYou can create specific CSS for a specific widget that has no padding and the background color you would like. You will not have to create a special text widget for this. The CSS would look something like this...
#text-1 {padding: 0; background: black;}
You will need to use the id of your custom widget (#text-1 in my example above). To find the id use something like firebug in Firefox or Developer tools in Chrome.
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberTry adding a 'max-width:' to size of the widget in the css.
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberYes, it can. You add an external link in the WordPress admin under menus. See screenshot.
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberYou can use google analytics to do this, but it requires adding special jave to the header and append the links you want to track. Instructions from google can be found here: https://support.google.com/analytics/answer/1136920?hl=en
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberHere is a great tutorial that show how to do it. (It does require modifying the code.)
http://www.wpsquare.com/add-next-previous-links-single-post-page/
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberweezieb-
I have used two different plugins in the last few months, and I am not pleased with eaither. So I cannot make a recomendation.
Christopher
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberChristopher HarrisMemberI am not familiar with Easy Recipe plugin. I use Genesis itself for the Google Authorship and have no problems.
Here is a tutorial: http://www.copyblogger.com/wordpress-google-authorship/
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberThe html should be:
<a class="aligncenter landing-button" href="http://addyourlinkhere.com">Click here to sign up!</a>
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMember1. Add the css class 'highlight-menu-item a' to the menu item you would like the effect. You do on the menu item itself in the WP dashboard. Select the drop down for the item you want to add the class for and add 'highlight-menu-item a' in the 'CSS Classes (optional)' box. If you do not see a CSS class box select screen option in the upper right corner, and a drop down will appear. Check the box for 'CSS Classes' under advanced options.
2) To create the "click here to sign up" button you need to assign a the 'landing-button' class to your link. Example:
[Html]Click here to sign up![/html]
You can do this from the 'Text' tab on the page editor.
WordPress Consultant and Genesis Developer http://wpattendant.com
Christopher HarrisMemberI would check out how Genesis Sandbox does it in the functions.php file. Genesis Sandbox is a starter child theme. They are importing from the CDN.
WordPress Consultant and Genesis Developer http://wpattendant.com
-
AuthorPosts