Forum Replies Created
-
AuthorPosts
-
January 7, 2013 at 10:11 pm in reply to: Using custom field and category to populate blog page #10265
Jen Baumann
ParticipantSure, here's a tutorial: http://dreamwhisperdesigns.com/genesis-tutorials/add-content-genesis-blog-page-template/ to keep content at the top of the blog page.
If you want to explore custom post types you should check out http://wpsmith.net/ and http://www.billerickson.net/blog/.
Jen Baumann
ParticipantSee this thread: http://www.studiopress.community/topic/minimum-featured-image-help/
Jen Baumann
ParticipantThe shadowing that is showing on your site even now is due to the invalid markup I mentioned in your other thread.
Jen Baumann
ParticipantYou need to fix your HTML markup http://validator.w3.org/check?uri=http%3A%2F%2Fuberblogging.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0
Jen Baumann
Participant🙂
#text-6 .widget-wrap { padding: 10px; }Jen Baumann
ParticipantDid you resave your WordPress permalinks?
Jen Baumann
ParticipantGenesis code needs to run before the child theme can. Unless you are putting the footer code before the init line. It should just go toward the bottom.
When you tested on the live site, did you disable total cache? Your footer is in the right location for this to work, that's why I wanted a url 🙂
Jen Baumann
ParticipantIt looks like you have tried the custom header option at one point. I see this in your source code:
#header { background: url("") no-repeat scroll 0 0 transparent; }Your title (Header Text) is probably turned off under Appearance > Custom Header. Check your settings there and click restore original header as well.
Jen Baumann
ParticipantThank you for the like! 🙂
You don't necessarily need the .taxonomy-description p. It depends on if you need to control any margin or padding added to it otherwise. That's completely optional and up to you!
Jen Baumann
ParticipantYou're welcome! You will get the hang of it :0) Takes practice!
Jen Baumann
ParticipantWhat's your url?
Jen Baumann
ParticipantYou still have some 1140px widths you need to deal with:
.wrap { margin: 0 auto; width: 1140px; }#footer-widgets .wrap { background-color: #FFFFFF; margin: 0 auto; overflow: hidden; padding: 40px 0 0; width: 1140px; }Jen Baumann
ParticipantAnnaedv, If you could open your own thread, that would be great, it is going to be a different issue.
You need to trump it with width: 100% instead of the max-width.
Jen Baumann
ParticipantIf you haven't added any other functions to move it, then that should work. Any plugins that may be altering things?
Jen Baumann
ParticipantYou really should try to do this with the built in title settings and CSS. You lose SEO and the clickable home link by not using it. I'm not sure what you were trying to do that didn't work, but CSS is pretty robust as far as what you can do with it.
Jen Baumann
ParticipantWhat theme are you using?
Jen Baumann
ParticipantYou can pretty much follow Brian's add a widget tutorial here to register the widget: http://www.briangardner.com/welcome-text-widget/
You'll have to do something like this to change the function in functions.php to include it:
/** Add the featured image section */ add_action( 'genesis_after_header', 'minimum_featured_image' ); function minimum_featured_image() { if ( is_home() ) { genesis_widget_area( 'welcome-text', array( 'before' => '<div class="welcome-text widget-area">', ) ); } elseif ( is_singular( array( 'post', 'page' ) ) && has_post_thumbnail() ){ echo '<div id="featured-image">'; echo get_the_post_thumbnail($thumbnail->ID, 'header'); echo '</div>'; } }Plus whatever css you need.
Note that code didn't paste well so pay attention to the function already in your file.
Jen Baumann
ParticipantHave you filled out your title under Settings > General? The site title should be filled out there.
Jen Baumann
ParticipantYou need to override the 1140 width on #page-title and #footer-widgets in the responsive section. Those are the 2 causing the issue.
Jen Baumann
ParticipantRemove this from your style.css file:
.menu-primary li li:last-child a, .menu-secondary li li:last-child a, #header .menu li li:last-child a { border: medium none; } -
AuthorPosts