Forum Replies Created
-
AuthorPosts
-
blogger boutiqueParticipant
You can adjust the margins/padding on this selector:
.entry,
.page.page-template-page_blog-php .entry {You'll probably want to use a negative margin on the homepage to really bring it in tight. You can even separate those two selectors out, and target them individually based on your needs for the blog page.
You can even change margins on the footer widgets as well:
.footer-widgets {
Let me know if you have any follow up questions.
Julieblogger boutiqueParticipantChanging the font size in the following selector will work:
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.widget .button {Let me know if that helps, or if you have any additional questions.
Julieblogger boutiqueParticipantWhat code did you use to reposition the secondary navigation? For some reason, it won't even let me inspect it. Maybe try using code from this link, and changing your hook?
http://briangardner.com/code/navigation-menus/#reposition-secondaryLet me know if that is what you followed, and I'll try to troubleshoot getting it aligned for you.
blogger boutiqueParticipantThis is an old code, and you'll need to tweak for blog posts, but maybe this will get you going in the right direction???
/** Remove the archive thumbnail from the blog page */
add_action( 'genesis_before_content', 'custom_conditional_actions' );
function custom_conditional_actions() {
if( is_front_page( 'home.php' ) && 'full' == genesis_get_option( 'content_archive' ) )
remove_action( 'genesis_post_content', 'genesis_do_post_image' );
}blogger boutiqueParticipantHi Shell,
1. I like to use BackupBuddy. A lot of users like VaultPress.
2. I usually remind my clients that they are responsible for regular backups/maintenance of their site. They always have the option of having me provide it as a paid service, though.
3. Sucuri or VaultPress is excellent for security.Hope this helps!
Julie
blogger boutiqueParticipantYou could give one of these a try:
http://janhoek.com/a-simple-smooth-back-to-top-button-for-genesis/
Add a working “Return to top of page” footer link in Genesis
Julie
blogger boutiqueParticipantI'm sorry, I don't have this theme on a demo to test this, but hopefully what I suggest will get you on the right path. If it doesn't, send me a link to your site, and I can try to assist you further.
What I would do, is start by adding the new selector for that fourth feature, decrease the width, add a new feature size (maybe determine this in photoshop so you know what size you need them) in your functions, then run the regenerate thumbnail plugin, and alter from there.
Julie
blogger boutiqueParticipantDo you have a left float set?
blogger boutiqueParticipantYou're welcome!
blogger boutiqueParticipantDid you find a solution to this? It sounds like something I would like to know how to do, as well. Care to share?
November 12, 2015 at 10:20 am in reply to: Beautiful Pro CSS adjustments need help/confirmation #170873blogger boutiqueParticipantThis question isn't even related to a Genesis theme, correct? It looks like the site you link to is html.
blogger boutiqueParticipantYou should be able to take the code out of a newer theme and swap it out.
blogger boutiqueParticipantI haven't used this theme, so I'm shooting from the hip here, but could you increase the number in either the Genesis > Theme Settings > Blog Page Template (number of Posts to Show)
Or
in Settings > Reading > Blog pages show at most??
blogger boutiqueParticipantIf it were me, in the media queries, I'd put a width: 100% for the img.alignright + img.alignleft and force the image to fill the width.
blogger boutiqueParticipantI think it looks great! Everything looks clean and organized. I like the color scheme! Good job!
blogger boutiqueParticipantI know Jetpack has a setting, or you can use the plugin from Gary Jones: http://www.infinite-scroll.com/
Here is another tutorial: http://cobaltapps.com/how-to-add-infinite-scrolling-to-genesis-child-themes/blogger boutiqueParticipantJust replace the margin with padding and the menu will align properly in Chrome.
blogger boutiqueParticipantFixed #2 and #3.
Still working on #1.
-
AuthorPosts