Forum Replies Created
-
AuthorPosts
-
Teresa
ParticipantOK. I get it. It's the link, not a page in the theme.
Thanks.
Teresa
ParticipantHmmm... that is very odd. I'm seeing something different this morning from what I saw yesterday afternoon. But it's what I wanted, so that works.
Thank you for your help.
Teresa
ParticipantIt isn't the link color I want to change, it's the rest of the text.
The link (hover) color is red, and that's fine. What I want to do is make the text white.
Thanks!
Teresa
ParticipantThat fixed it!
Thank you so much.
Teresa
Teresa
ParticipantSorry. My apologies. I'm not sure I was awake when I posted that. 🙂
I'll go back and look again.
Thanks.
Teresa
Teresa
ParticipantI appreciate your responses. I've never run into these problems with any of the StudioPress themes before, which is why I wondered if it being a Third Party Theme was causing the problem.
Re: WordPress debug - is that a plugin? If not, how do I turn it on?
Re: Editing the theme - would I do this in the Stylesheet and just replace it via FTP?
Thank you very much.
Teresa
Teresa
ParticipantThanks!
Teresa
ParticipantI've been working with the theme as is. I'm just so used to Genesis/StudioPress themes, working with anything else seems very foreign.
Everything shown on that theme are posts. Not really anything special.
I'll continue to work with it to see what I can come up with.
Thanks for taking the time to answer.
Teresa
Teresa
ParticipantMaybe I should have, but it's too late now. 🙂
Teresa
ParticipantWell, I wondered about that. But since I didn't know these people and I wasn't part of the
conversation, I thought it would be best if I just stayed out of it.But you know how it is when you get curious about something. 🙂
Thanks for you input.
Teresa
Teresa
ParticipantThank you so much! Worked like a charm.
I will mark this as resolved.
Teresa
April 10, 2014 at 8:09 am in reply to: Prose Widgets Still There After Child Theme is Changed #99487Teresa
ParticipantYou were right, Brad. "Prose Extras" was the plugin. I didn't even know it was there.
Thanks for your help!
April 10, 2014 at 8:07 am in reply to: Prose Widgets Still There After Child Theme is Changed #99486Teresa
ParticipantHmmmm.... hadn't thought of that. I'll check.
Thanks.
Teresa
ParticipantYou did it!
http://www.centerforempoweredwomen.com/thank-you-and-welcome/
How can I ever thank you??
Teresa
ParticipantThat definitely shrunk the container, the text still goes outside it. Is there a way to keep the text inside the container?
http://www.centerforempoweredwomen.com/thank-you-and-welcome/
You are an angel to help me like this. I deeply appreciate it.
Thanks.
Teresa
Teresa
ParticipantI deeply appreciate your help. But I think I've fixed most of it. Here is the link to the page:
http://www.centerforempoweredwomen.com/thank-you-and-welcome/And here is the code that I finally got to remove both the top Navigation and the footer widgets:
<?php
/**
* This file adds the Landing template to the Education Theme.
*
* @author StudioPress
* @package Education Pro
* @subpackage Customizations
*//*
Template Name: Landing
*///* Add landing body class to the head
add_filter( 'body_class', 'education_add_body_class' );
function education_add_body_class( $classes ) {$classes[] = 'education-landing';
return $classes;}
//* Force full width content layout
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );// Remove header, navigation, breadcrumbs, footer widgets, footer
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
remove_action( 'genesis_header', 'genesis_header_markup_open', 5 );
remove_action( 'genesis_header', 'genesis_do_header' );
remove_action( 'genesis_after_header', 'genesis_do_nav' );
remove_action( 'genesis_header', 'genesis_header_markup_close', 15 );
remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_nav' );
remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_subnav' );
remove_action( 'genesis_before_content', 'genesis_do_breadcrumbs' );//* Remove site footer widgets
remove_action( 'genesis_before_footer', 'genesis_footer_widget_areas' );//* Remove site footer elements
remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 );
remove_action( 'genesis_footer', 'genesis_do_footer' );
remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 );//* Run the Genesis loop
genesis();The only thing I want to do now is to change the container width so that the text doesn't spread out so wide. I tried to use the one Brad Dalton suggested, but I didn't have any luck with it.
If you can help me with that, I will be ever so grateful and I'll leave you alone - at least temporarily 🙂
Thanks so very much.
Teresa
Teresa
ParticipantIt didn't work. So I'm going to start over and go through it step-by-step like I've done with your help for the past 2 days.
I have a better idea of what I should be looking for this time. Maybe I can catch the problem when it happens.
If I Deactivate the Genesis Simple Edits plugin, will that cause the theme to revert to the original content, or will it keep the changes I've made?
I'll start working on the Landing Page right now and keep you posted.
Thank you so much Andrea. I know this takes time away from your own business projects and I deeply appreciate your help.
Teresa
Teresa
ParticipantDoes it matter where I add it?
Thanks.
Teresa
Teresa
ParticipantI do have Simple Edits installed, but I've done some tinkering with the template and now something else weird has happened.
If you look at the page again: http://www.centerforempoweredwomen.com/thank-you-and-welcome/ you'll see that the footer widget is gone, but the top Navigation menu is back.
What I did was this: I copied the Landing page .php from the Balance theme and substituted it for the one we were using that got rid of the top Navigation, but left the Footer Widgets.
It got rid of the Footer Widgets and brought back the top Navigation. How's that for weird? LOL
Any suggestions now? I can start all over - whatever you suggest. If we simply can't get rid of the top Navigation, that's better than having the Footer widgets, but I'd like to get rid of all of it.
Thanks so much for your patience.
Teresa
Teresa
ParticipantI'm sure it's something I've done. Here you go:
<?php
/**
* This file adds the Custom Landing template to the Education Theme.
*
* @author Brad Dalton
* @package Generate
* @subpackage Customizations
*//*
Template Name: Landing
*/// Add custom body class to the head
add_filter( 'body_class', 'education_add_body_class' );
function education_add_body_class( $classes ) {
$classes[] = 'custom-landing';
return $classes;
}// Remove header, navigation, breadcrumbs, footer widgets, footer
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
remove_action( 'genesis_header', 'genesis_header_markup_open', 5 );
remove_action( 'genesis_header', 'genesis_do_header' );
remove_action( 'genesis_header', 'genesis_header_markup_close', 15 );
remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_nav' );
remove_action( 'genesis_before_content_sidebar_wrap', 'genesis_do_subnav' );
remove_action( 'genesis_before_content', 'genesis_do_breadcrumbs' );
remove_action( 'genesis_after', 'genesis_footer_widget_areas' );
remove_action( 'genesis_footer', 'genesis_footer_markup_open', 5 );
remove_action( 'genesis_footer', 'genesis_do_footer' );
remove_action( 'genesis_footer', 'genesis_footer_markup_close', 15 );genesis();
-
AuthorPosts