Forum Replies Created
-
AuthorPosts
-
rfmeier
MemberHello,
The plugin uses WordPress's add_image_size function, which registers the image size and will create that image size when the image is uploaded. If the size changes, the existing uploaded images will not change.
Try installing and running the Regenerate Thumbnails plugin.
rfmeier
MemberHello,
The comment form is similar. Try adjusting the padding around line 1230;
/* line ~1230 */ .comment-respond, .entry-pings { padding: 40px 40px 16px; padding: 4rem 10rem 1.6rem; }
rfmeier
MemberHello,
The padding is determining the width of you posts (.entry). You can adjust this within your style.css file;
/* around line ~1099 within style.css */ .entry { background-color: #fff; border-radius: 3px; /* padding: top left/right bottom */ padding: 40px 40px 24px; padding: 4rem 4rem 2.4rem; }Adjust the second 40px / 4rem to test your results. In your theme's case, 1rem = 10px.
Hope this helps.
rfmeier
Memberibadullah,
This is common when switching to any theme. Not all themes share the same sizes. Have you changed any sizes within the Settings > Media page within your admin? If you update these sizes you would need to regenerate your images to get the correct size.
Is the site live? Do you happen to have a link?
rfmeier
Memberandoll,
You can paste the Google Analytics within the Genesis > Theme Settings under the Header and Footer Scripts section. It can go within the first box which hooks the wp_head action.
Make sure to include the
<script></script>tags if needed.
rfmeier
MemberHello,
@marklove, you have the incorrect id as the first argument in the genesis_widget_area function. I adjusted the code to have to correct id below;I hope this helps.
rfmeier
MemberHello,
For just the home page, it will have to be modified a tiny bit. Try;
.home .site-tagline { margin-top: 0; }The .home class is applied to the <body> element when you are on the home page.
rfmeier
MemberHello,
There is a margin top styling with the .site-tagline rule. Commenting it out or removing it should solve the problem.
.site-tagline { background-color: #ffcc66; border-bottom: 0px solid #eee; /* margin-top: 60px; */ /* margin-top: 6rem; */ padding: 40px 0; padding: 4rem 0; }I hope this helps.
rfmeier
MemberHello,
I will take a crack at this.
I had to make two css adjustments to the child's style.css file.
/* set a width and center the navigation */ .nav-primary{ max-width: 1140px; margin: 0 auto; } /* add left padding to the first element */ .genesis-nav-menu > .first > a { padding-left: 2.8rem 2.4rem; }CSS preview: http://quick-markup.com/p/535557ba0ece5
rfmeier
MemberI think your style.css is being minified by a plugin or some other source, which is probably causing a cache. This would prevent changes from appearing. Make sure you have the
!importantinclude inbackground-position: center center !important;so the changes will override the header image style rules.
rfmeier
MemberAlso, for the first css I provided you, make sure that code is after any other header related css rules or else it will not override existing styles properly.
rfmeier
MemberMake sure to turn off your caching when you do any css updates. Even with the cache plugin turned off, your css could still be browser cached preventing you from seeing any changes.
rfmeier
MemberBrenda,
Are you using the custom header from the theme settings? That puts in css that is hard to override. You could always center the
#headerelement.#header{ max-width: 940px; margin: 0 auto; }
rfmeier
MemberFebruary 12, 2014 at 11:14 am in reply to: Beautiful theme – moving and changing background image and navigation bar #89990rfmeier
MemberFebruary 12, 2014 at 8:46 am in reply to: Beautiful theme – moving and changing background image and navigation bar #89971rfmeier
MemberChris,
The code above has nothing to do with the navigation menus. To center the navigation you will need to add a rule to the navigation menu in your style.css file.
Around line ~953 add
text-align: center;to get the following;/* Site Navigation ---------------------------------------------------------------------------------------------------- */ .genesis-nav-menu { clear: both; color: #666; font-family: 'Lato', sans-serif; font-size: 16px; line-height: 1.5; width: 100%; text-align: center; }Here is the result I was able to get https://s3.amazonaws.com/uploads.hipchat.com/61944/453094/jxwoEmZoxZkIc2H/centered-navigation.png
rfmeier
MemberWhere did you place the code I gave you in your style.css file?
Here were my results;
screenshot http://goo.gl/2fmO2M
style.css screenshot https://s3.amazonaws.com/uploads.hipchat.com/61944/453094/KE7K7fcUyrPCu4O/Screen%20Shot%202014-02-12%20at%208.35.39%20AM.png
rfmeier
MemberHello,
Try this style rule within your style.css file;
.full-width-content.outreach #content{ padding-top: 0; padding-bottom: 0; }
rfmeier
MemberHello,
The WordPress Text widget would let you accomplish this as it accepts html code. You will just have to enter the html yourself.
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#Example_1
rfmeier
MemberI looked into WP Socializer, but they are doing something goofy with the way they add their filters, so I looked into nr related posts plugin and found better results.
You can try the following in the theme's functions.php file;
// remove the default relate content filter remove_filter( 'the_content', 'nrelate_related_inject', 10 ); remove_filter( 'the_excerpt', 'nrelate_related_inject', 10 ); // add the related content filter with a lower priority add_filter( 'the_content', 'nrelate_related_inject', 15 ); add_filter( 'the_excerpt', 'nrelate_related_inject', 15 );I hope this helps.
-
AuthorPosts