Forum Replies Created
-
AuthorPosts
-
Your PHP opening tags are messed up. They should be <?php not <!–?php. And you don't need the header, sidebar or footer calls since that is all handled by genesis();
A bare page template looks like
<?php /* Template Name: THE_TEMPLATE_NAME_GOES_HERE */ genesis();
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Refer to this entry on conditional tags
if (is_single() && ! in_category( array (’188′, ’189′, ’192′, ’1485′) && ! is_bbpress()))
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
January 29, 2013 at 8:02 pm in reply to: HOVER background color for button that says "continue" not changing as it should #16244Please include a link to your site with all questions so that people can see what is going on.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
You need to increase the height of #header
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
1) You can add the category to your menu and add archive intro text in the Categories panel otherwise if you are using the blog page template you would need to add it through a function added to functions.php with conditional tags.
2) That setting is in the Content Archives section of the Genesis settings panel.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
If you have another theme you could grab the style rules you need from there but if you are unfamiliar with the structure of Genesis or CSS I would recommend going with a different theme that has sidebars. Maybe Minimum? That is really similar to Pretty Pictures.
Or if all you need is a donate button you could put that in the navbar on the right.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
If you’re copy/pasting from somewhere make sure that all the quotes are plain quotes and not curly quotes.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Ya, that’s what I said
A “widget area” is really a sidebar
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Assuming you want it in place of the featured sidebar, open home.php and replace this with wpcycle’s template tag
dynamic_sidebar( 'featured' );
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Pretty pictures has all those layout options disabled. You’ll find this in functions.php
/** Unregister layouts */ genesis_unregister_layout( 'content-sidebar' ); genesis_unregister_layout( 'sidebar-content' ); genesis_unregister_layout( 'content-sidebar-sidebar' ); genesis_unregister_layout( 'sidebar-sidebar-content' ); genesis_unregister_layout( 'sidebar-content-sidebar' );
Note that there aren’t any style rules for the sidebars or those layouts in the style sheet so you’ve got a bit of work ahead of you getting everything styled.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
Custom fields are most likely just disabled in the screen options, the link for which you’ll find in the upper right corner. Also you can just add the category itself to your custom menu.
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
The init line he is referring to is at the top of functions.php
<?php /** Start the engine */ require_once( get_template_directory() . '/lib/init.php' );
John “Nicolas Flamel” Wright | SoZo’s design| John Wright Photography
January 29, 2013 at 5:19 pm in reply to: How to Center Header and Home Page Text from Far Left #16190 -
AuthorPosts