Forum Replies Created
-
AuthorPosts
-
styzer
ParticipantI did select full text in Reading. Static page. But the home page still doesn't show formatting...
styzer
ParticipantI never use the Excerpt field, I selected to show summary...
styzer
ParticipantI'm not sure if I'm using the styles properly...
Post on home page - MIDI “MOCKUPs” for newcomers: http://www.vi-control.net/portal/ shows NO formatting. When you click on it, the post shows it.
styzer
ParticipantHi Erik,
http://www.vi-control.net/portal
I went back and pasted text in plain text form. For some reason the text was filled with styling. It seems to be working now!
styzer
ParticipantOK, I tried other themes and the same problem occurs. Something nullifies the styling between the text editor and the blog page. Never happened to me before...
Anyone has ideas how to solve this?
Thank you in advance...
Andre
styzer
ParticipantWow, no wonder I can't figure this out. It is so totally irrational to me... but thanks for your kind help!
styzer
ParticipantSo I can replace an existing sidebar with a plugin to create a sidebar. I am really confused. 🙂
styzer
ParticipantThanks, so again - what is the use of the Genesis Simple Sidebar?
styzer
ParticipantThe themes that have an option for TWO sidebars, I don't need the Genesis Simple Sidebar plugin. Soi I don't understand your reply. Isn't that plugin supposed to create sidebars where there are none?
styzer
ParticipantStreamline Pro. I have about these SP child-themes:
Decor v.1.0.1
eleven40 Pro v.2.2.1
Executive Pro v.3.1.2
Expose Pro v.2.1
Focus Pro v.3.1.1
Generate Pro v.2.1
Magazine Pro v.3.1
Metro Pro v.2.0.1
News Pro v.3.0.2
Outreach Pro v.3.1
Streamline ProI have tried a few of them with similar results.
styzer
ParticipantThank you for your reply. As I mentioned, there is no such option in the Customize area or elsewhere. See screenshots:
Genesis layout:

Customize options:

Therefore something is wrong, isn't it? Is it the plugin, or are there instructions I didn't see beside those accompanying the plugin?
Thanks!
styzer
ParticipantThanks genrock, however it's not working for me. Is there a way to use the container, or the wrap, or site-inner, etc. as an anchor from which to position the menu (instead of the header)?
It's positioned correctly according to the header, underneath it, but I'd like to have it underneath the slider on the homepage. I removed the header from the homepage only, so that the slider takes its place. Makes sense?
Unless I was to put the slider as a header?
Thanks again!
Andre
styzer
ParticipantI see, I did ask the question before, how to reposition the navigation above the header. This code shows how to do it via the functions.php file:
//* Reposition the primary navigation menu remove_action( 'genesis_after_header', 'genesis_do_nav' ); add_action( 'genesis_before_header', 'genesis_do_nav' );What qualifier should I use to "add_action" in order to move the menu "above the container" (site-inner) so that it will always be under both the slider and the menu?
I'm thinking it would be something like:
//* Reposition the primary navigation menu remove_action( 'genesis_after_header', 'genesis_do_nav' ); add_action( 'genesis_before_xxxxxxx', 'genesis_do_nav' );I tried "container" and "site-inner" but I'm thinking it's probably not be the right description.
Any help much appreciated... 🙂
Andre
styzer
ParticipantHi Leo,
What is the code you found, and where did you insert it?
Thanks!
Andre
styzer
ParticipantThis totally worked! Thanks!
Now as for removing the menu, that too worked. But the Outreach theme doesn't have a template file, so I don't see where I could include the code to move it elsewhere?
I'd like to move both the navigation and the scrolling ticker and place them under the slider. I pasted the code in the Genesis settings "header and footer scripts," under the ticker script, but that didn't work.
Any more ideas?
Thanks again!
Andre
styzer
ParticipantThis reply has been marked as private.styzer
ParticipantThanks Craig, I'll make sure to add this too.
Regards,
Andre
styzer
Participantstyzer
ParticipantThanks Craig,
Here is where I added it:
// Register Custom Post Type function prophecy_post_type() { add_post_type_support( 'prophecy_post_type', 'genesis-layouts' ); $labels = array( 'name' => _x( 'Prophecy Types', 'Post Type General Name', 'prophecy' ), 'singular_name' => _x( 'Prophecy', 'Post Type Singular Name', 'prophecy' ), 'menu_name' => __( 'Prophecy', 'prophecy' ), 'parent_item_colon' => __( 'Parent Item:', 'prophecy' ), 'all_items' => __( 'All Items', 'prophecy' ), 'view_item' => __( 'View Item', 'prophecy' ), 'add_new_item' => __( 'Add New Item', 'prophecy' ), 'add_new' => __( 'Add New', 'prophecy' ), 'edit_item' => __( 'Edit Item', 'prophecy' ), 'update_item' => __( 'Update Item', 'prophecy' ), 'search_items' => __( 'Search Item', 'prophecy' ), 'not_found' => __( 'Not found', 'prophecy' ), 'not_found_in_trash' => __( 'Not found in Trash', 'prophecy' ), ); $args = array( 'label' => __( 'prophecy_type', 'prophecy' ), 'description' => __( 'Prophecy Type Description', 'prophecy' ), 'labels' => $labels, 'supports' => array( 'title', 'editor', 'excerpt', 'author', 'thumbnail', 'comments', 'trackbacks', 'revisions', 'custom-fields', 'page-attributes', 'post-formats', ), 'taxonomies' => array( 'category', 'post_tag' ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'show_in_admin_bar' => true, 'menu_position' => 5, 'menu_icon' => '', 'can_export' => true, 'has_archive' => true, 'exclude_from_search' => false, 'publicly_queryable' => true, 'capability_type' => 'page', ); register_post_type( 'prophecy_type', $args ); } // Hook into the 'init' action add_action( 'init', 'prophecy_post_type', 0 );I also have this in my style.css:
.postid-6113 #sidebar { display: none; }But when I go to my EDIT page for this post, I still don't see any layout options. What am I missing?
Regards,
Andre
styzer
ParticipantThis is the code Brad shares:
http://wpsites.net/web-design/remove-sidebar-home-page-posts/I don't know how to interpret it, though.
-
AuthorPosts