Forum Replies Created
-
AuthorPosts
-
clarkscondensed
MemberNone of that seems to be missing unfortunately.
clarkscondensed
MemberThanks! That worked!
clarkscondensed
MemberNevermind, figured it out! Thanks!
clarkscondensed
MemberSorry, I should have put a specific link. I can see what you mean, but it is actually happening on all my pictures -- is there somewhere that I need to go to change the margin size to 2.4 instead of -4?
clarkscondensed
MemberThank you!!!! That worked.
clarkscondensed
MemberIt happened after we published a new post. I went and sent it back to draft, and the grid went back to normal. Obviously, we don't want this to happen, but it seems really weird that this would happen.
clarkscondensed
MemberUPDATE:
Now the second page seems to be working, but the first page is all screwed up. I resized that content area for the first page, and that helped, but then the other pages got all scrambled. Anyone??
clarkscondensed
MemberHmm..that didn't seem to work. Here is the link:
clarkscondensed
MemberI made sure that the genesis widget was placed in the widget area, but no luck.
Here is the code I have in the functions.php file
<script src="https://gist.github.com/anonymous/7393947.js"></script>
clarkscondensed
MemberWell I did that, but it seems to have removed the slider altogether...is there anything else I need to change in that code? This is all in the functions.php folder
clarkscondensed
MemberGreat, thank you! I'll see if that works.
clarkscondensed
MemberIt turns out that it does show up. My browsers, for some reason, won't show me changes I make on this site (itsyummi.com) it is showing up. However, I'd like it to show up in the Genesis Loop hook, so it doesn't take up so much space. Would I change this:
add_action( 'genesis_after_header', 'your_widget' );
to this:
add_action( 'genesis_loop', 'your_widget' );
Thank you for all your help so far.
clarkscondensed
MemberI must be an idiot - I copied and pasted that exact code, and that widget area shows up, but the slider is still not showing up!
clarkscondensed
MemberThanks! I tried that, and it changed the links inside of posts, but not at the bottom of the home page -- is there something I need to change in that code for that?
itsyummi.com
clarkscondensed
MemberOkay, I installed that code, and I think I changed it correctly; my computer is having a hard time updating the site for some reason though -- can you see if slider is working. If not, here is the code I put in:
genesis_register_sidebar( array(
'id' => 'home-slider',
'name' => __( 'Home Slider', 'ItsYummi' ),
'description' => __( 'This is the home slider', 'ItsYummi' ),
) );add_action( 'genesis_after_header', 'your_widget' );
function your_widget() {
if ( is_front_page() && is_active_sidebar('new-widget') ) {
genesis_widget_area( 'new-widget', array(
'before' => '<div class="new-widget" class="widget-area">',
'after' => '</div>',
) ); }}
clarkscondensed
MemberI apologize, the site is called thenymelrosefamily.com, different from the first link I posted
clarkscondensed
Memberhttp://www.socialmediacondensed.com (test site)
http://www.clarkscondensed.com (live site that I want the design to be on.)clarkscondensed
MemberBrad --
I realized right after I posted this that my design wasn't showing up (I had tried moving it to my site without any luck.) The actual design is up there now, so it's definitely more than just the theme 🙂 I'll look into the WP Migrate DB plugin.
clarkscondensed
MemberCarrie, I'm still having the issue with the top of the page. It only appears briefly when the page first loads, but I'm just hoping to try and make it so it doesn't do it at all.
clarkscondensed
MemberUpdate:
So still messing around with things, I changed my layout to be right sidebar, and I removed
.content-sidebar #content-sidebar-wrap, .sidebar-content #content-sidebar-wrap {
width: 70%;
}
from my custom code. This seems to make it look somewhat normal in Chrome (with the sidebar on the left, which still doesn't make sense) but when I look at it in Firefox, the sidebar is on the right (which does make sense, since that's what it should be.) I just have no clue what is going on. -
AuthorPosts