Forum Replies Created
-
AuthorPosts
-
Carolyn
ParticipantHi Brad.
I didn't get this resolved. Now that I am on vacation I hope to tackle it again soon.
I know the site link I gave doesn't work anymore, but with the code I provided, can you see what my problem might be?
Carolyn
ParticipantI missed this yesterday. Thanks!
Carolyn
ParticipantProbably VERY USEFUL. I'm in the beginning (hacking) stages so I'm trying to learn as much as possible.
Do you post much on G+?
I'll follow you there too if you do.
Carolyn
ParticipantGreat, thanks Brad. I've now subscribed to your feed. I'm sure I'll learn a lot!
Carolyn
ParticipantHere's where I am
http://todd.carolyncreates.com/I've got the Genesis Slider in, but have space between the subnav and slider. I've also tried to update the slider but it won't (another topic)
Should I change my code from above to the one you listed?
Carolyn
ParticipantOkay, so I'm new to it and I added a slider the way I wrote, but I'd go with Brad's since he is probably more experienced.
Brad - what is your code? Maybe I should change mine.
Carolyn
ParticipantThanks, but then how come when I change it in the CSS, only the right side is increased?
Carolyn
ParticipantCheck that you aren't missing a semi-colon or something in the code.
Carolyn
ParticipantHere's what I did.
I added a widget area just below the secondary navigation.
To the function.php I add the code/** Register widget areas */
genesis_register_sidebar( array(
'id' => 'home-top',
'name' => __( 'Home Top', 'fabric' ),
'description' => __( 'This is the top section of the homepage', 'fabric' ),
) );Then I created a home.php and added
<?php
/** Add home top widget area */
add_action( 'genesis_after_header', 'home_top' );function home_top() {
dynamic_sidebar( 'home-top' );
}genesis();
After that I went to Appearances > Widgets
and in my new widget area Saw there was an area called Home Top.
In that widget, I put the Genesis Responsive Slider.Carolyn
ParticipantDid you end up commenting out any of the functions before making that change?
Carolyn
ParticipantHmm, not sure what to suggest.
Carolyn
ParticipantThose are widgets.
Go to Appearances > Widgets
Carolyn
ParticipantHave you set a featured image when you set up a post?
I have the image in my post and on front page BUT NOT the big one...
See my test site
Carolyn
ParticipantI can't access your link above, but I did remove the Featured Image above the post title by commenting out
/** Add custom field above post title */
/**add_action('genesis_before_post_title', 'fabric_post_image', 8 );
function fabric_post_image() {if ( is_page() ) return;
if ( $image = genesis_get_image( 'format=url&size=featured' ) ) {
printf( '<a href="%s" rel="bookmark"><img class="post-photo" src="%s" alt="%s" /></a>', get_permalink(), $image, the_title_attribute( 'echo=0' ) );
}}
In the functions file. Is that what you are looking for?
Carolyn
ParticipantThanks Brad. I did change the hooks, but to no avail. I'll keep trying.
Carolyn
ParticipantThanks Tom (and Susan)!
Carolyn
ParticipantThanks Susan, I searched but obviously not that well!
February 2, 2013 at 10:39 am in reply to: Changing the Number of Displayed Blog Posts – Crystal Theme #17361Carolyn
ParticipantThanks!
February 1, 2013 at 3:30 pm in reply to: Changing the Number of Displayed Blog Posts – Crystal Theme #17208Carolyn
ParticipantHmmm, that doesn't seem to work. I have it set at 5 and 10 are showing.
http://www.aakpreschool.com/blog/Carolyn
ParticipantTHANK YOU! I have been toying around for over an hour in the functions file!
As a newbie, why did I have to comment out in home.php for it to work and not in functions.php? -
AuthorPosts