anehra75

Forum Replies Created

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • in reply to: Homepage CSS help #16840
    anehra75
    Customer

      Oh, sorry… the site is http://nycfit.com

      in reply to: Home Feature 10, 11, 12, 13 #13451
      anehra75
      Customer

        Actually just figured this out. Fairly easy w/ the following CSS modifications:

        .home-feature-10 {
        float:left;
        width:48%;
        margin:0 1.3% 0 0;
        }
        
        .home-feature-11 {
        float:right;
        width:48%;
        margin:0 1.3% 0 0;
        }
        
        .home-feature-12 {
        float:left;
        width:48%;
        margin:0 1.3% 0 0;
        }
        
        .home-feature-13 {
        float:right;
        width:48%;
        margin:0 1.3% 0 0;
        }
        

        Probably will have to play w/ the iPhone/iPad section of the stylesheet to perfect, but this basically does the trick.

        in reply to: Background Image on Home Page Only #13434
        anehra75
        Customer

          Thanks, Eric,

          The url is http://nycfit.com, but I’m going to be rebuilding the site on the new Rainmaker hosted platform (by Copyblogger; it’s pretty sweet)

          So the code would be like this?

          .home
          {
          background-image:url('http://blah.blah/image.jpg');
          }

          Thanks

          in reply to: Feature Image on Posts #13270
          anehra75
          Customer

            Add this CSS to give the in-post featured image the same formatting as in the blog index;

            /*—-Featured Image in Post—-*/
            img.attachment-post-image.wp-post-image {
            margin-bottom: 24px;
            margin-right: 24px;
            }

            in reply to: Blog Template – Images #13269
            anehra75
            Customer

              Use the code from the above link, but change ‘genesis_before_entry’ to ‘genesis_entry_content’

              That will put the image after the headline and before the main content of your post. And won’t have to manually add the image to your post content.

              You will need to adjust CSS to fix the spacing, but it looks okay if you don’t.

              in reply to: Feature Image on Posts #13268
              anehra75
              Customer

                I just added this to functions.php and it works:

                // Code to Display Featured Image on top of the post
                add_action( ‘genesis_entry_content’, ‘featured_post_image’, 8 );
                function featured_post_image() {
                if ( ! is_singular( ‘post’ ) ) return;
                the_post_thumbnail(‘post-image’);
                }

                Just need to fix css spacing at the bottom of the image, but otherwise perfect.

                in reply to: Updates in 1.4.1 #12711
                anehra75
                Customer

                  Thanks for your reply. I will def wait for the update. I purchased from StudioPress.

                  I’ve made some CSS changes, which I will just re-do on the 1.4.1 stylesheet. Nothing major, just fonts/spacing. But looking forward to the updated landing page, parallax, etc!

                Viewing 7 posts - 1 through 7 (of 7 total)