Forum Replies Created
-
AuthorPosts
-
mariafernandezMember
Wow! It's now working!
There was a line missing. Thanks so much.
Do you know if there are some instructions on how to get pictures to show, rather than my blog posts. I'd like to have my products on the slideshow, rather than my posts. I've looked at the plugin settings, but it seems to be for posts and pages. I can't see where to set the pictures.
mariafernandezMemberanitac, perhaps you could send me a screenshot with the code. I don't mind copying it out.
You see, another problem we're having is that the apostrophes and quotes are wrong when I copy and paste them, so I keep having to change them.
mariafernandezMemberanitac, we're almost there. See what I've got now:
Spanish Lessons For Beginners – The Best Way to Learn Spanish.
I'm looking at your site in a minute
mariafernandezMemberI so much wanted this to work. Alas, the slider's not coming back. This is the code I've got:
/** Register widget areas */
genesis_register_sidebar( array(
'id' => 'welcome-text',
'name' => __( 'Welcome Text', 'genesis' ),
'description' => __( 'This is the welcome text widget.', 'balance' ),
) );/** Add the welcome text section */
add_action( ‘genesis_before_content_sidebar_wrap’, ‘custom_welcome_text’ );
function custom_welcome_text() {
if ( is_home() )
genesis_widget_area( ‘welcome-text’, array(
‘before’ => ”,
) );
}I've had to upload the original functions.php file so many times and repeat the changes, perhaps there's something wrong in the syntax.
mariafernandezMemberAnitac,
My slider has disappeared altogether. Now it doesn't come up anywhere 🙁
This is all the code I've got on functions.php with relation to the slider:
/** Register widget areas */
genesis_register_sidebar( array(
'id' => 'welcome-text',
'name' => __( 'Welcome Text', 'genesis' ),
'description' => __( 'This is the welcome text widget.', 'balance' ),
) );/** Add the welcome text section */
add_action( ‘genesis_before_content_sidebar_wrap’, ‘custom_welcome_text’ );
function custom_welcome_text() {
if ( is_home() )
genesis_widget_area( ‘welcome-text’, array(
‘before’ => ”,
) );
}Something's obviouly missing ...
mariafernandezMemberI've now got the following line in my functions.php file:
'description' => __( 'This is the welcome text widget.', 'balance' ),
The slider is still on all pages. Can I check with you that what I need to add to my functions.php file is:
____________________________
/** Add the welcome text section */
add_action( ‘genesis_before_content_sidebar_wrap’, ‘custom_welcome_text’ );
function custom_welcome_text() {
if ( is_home() )
genesis_widget_area( ‘welcome-text’, array(
‘before’ => ”,
) );
}_____________________________
I mean, exactly that code.
mariafernandezMemberWould that be?
‘description’ => __( ‘This is the welcome text widget.’, ‘themename‘ ),
‘description’ => __( ‘This is the welcome text widget.’, ‘balance‘ ),
or is it Balance (with a capital B), balancetheme. There are no instructions for this anywhere.
mariafernandezMemberSo far I've been able to put the widget across the top, but on all pages, which is not good enough. The hook given above for the home page only doesn't work in the Balance theme. It breaks the code and my blog crashes (i.e. all you can see is a blank page and you need to re-upload the original .php files)
Can anyone suggest another solution?
mariafernandezMemberI've now uploaded the Genesis Responsive Slider plugin. I have the Balance theme, which gives me the widgets: 'Home Featured Left' and 'Home Featured Right'. What I need is a 960px widget.
How can I get it?
mariafernandezMemberI've found a site that has exactly the kind of slider I was thinking of: http://empoweris.com/
Can the Genesis Responsive Slider achieve something in those lines?
Answer: yes, this site is using that plugin
mariafernandezMemberFAT Media's right. I should only have the slider in the home page.
Does anyone have a preference: Genesis Responsive Slider vs. Genesis Bootstrap Carousel
mariafernandezMemberanitac, I don't know if I'm being blind, but I can't see the connection between my original question and the link you've posted.
mariafernandezMemberjonahgirl, that's very kind of you. Which sliders can I choose from?
mariafernandezMemberThanks. I've now changed the number of posts to 10. In the Balance theme it appears that making the change in the home.php file is sufficient for all pages (at tleast the way I've got it set up).
December 21, 2012 at 7:19 am in reply to: How do I change "Speak your mind" comment header #6624mariafernandezMemberThanks a lot.
If anyone wants to change 'Speak your mind' to 'Leave a comment' (rather than 'Leave a Comment' - with a 'C') all you need to do is add to your functions.php file:
'/** Modify the speak your mind text */
add_filter( 'genesis_comment_form_args', 'custom_comment_form_args' );
function custom_comment_form_args($args) {
$args['title_reply'] = 'Leave a comment';
return $args;
}mariafernandezMemberI've now found the solution. If you want to change your post navigation colors, go Post Navigation in your style.css file
My css now looks like this: (that's darker background behind page numbers and a red active background with a white number)
.navigation li a,
.navigation li.disabled,
.navigation li a:hover,
.navigation li.active a {
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
background-color: #eee;
border-radius: 3px;
color: #777;
font-size: 11px;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
padding: 8px 12px;
text-decoration: none;
}.navigation li a:hover,
.navigation li.active a {
background-color: #BA0202;
color: #fff;
}mariafernandezMemberSusan, you've made my day.
How do I now customize the page number background color? I'd like to make them all a darker gray and the active one orange. I've looked in my css file, but I can't see where to do it there. Any clues?
mariafernandezMemberThe very simply change to the functions.php file works great.
mariafernandezMemberThanks. I found that and I'm working on it.
December 21, 2012 at 4:12 am in reply to: Gravatar (avatar?) showing generic monster – Balance #6600mariafernandezMemberI can confirm that both addresses match.
My avatar appears on posts and comments, but not on my blog's sidebar.
When I go to Settings / Discussion I can get one of the generic avatars as the image shown on my sidebar, but I don't get the option of choosing my own avatar.
How do I get my picture to show on my blog's sidebar? Do I need a plugin or a change in the code?
-
AuthorPosts