Blog Posts Page

Homepage Community Forums Ambition Blog Posts Page

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #18925
    Stephanie
    Customer

      Hi Wes,

      I have my homepage set to blog posts and just have a couple posts showing up there. I also wanted the blog to be a menu item but I’m not sure how to get all posts showing there. Right now it shows none.

      Thanks!
      Stephanie

      #18931
      Wes
      Moderator

        Did you create a Blog Page using the Blog Template? You can create a Page, name it “Blog” and then select the Blog Template in the right sidebar. Then add that page in your menu.

        #18933
        Stephanie
        Customer

          I basically had to create a new homepage so all is well. I have just TWO small issues left: Any way to reduce padding around my slider in the mobile view? And change the black header background to white? My site is live now: http://www.stephaniesammons.com if you want to take a look.

          Thanks.

          #18972
          Wes
          Moderator

            To reduce the space, add this in your responsive section –

            	.front-page-1 .flexible-widgets {
            	    padding: 0;
            	}

            You can add this in the @media only screen and (max-width: 550px) { or whichever width you prefer.

            To change the background to white, look for this around line 2351 –

            	.front-page .site-header {
            		background-color: #000;
            	}

            Then change it to #fff. This is located in your Responsive Section in your CSS under this –

            @media only screen and (max-width: 1023px) {

            #19079
            Stephanie
            Customer

              Hi, I am not having any luck with reducing space above and below my slider on mobile devices.

              I don’t understand what you are referring to in the prior comment with this:

              You can add this in the @media only screen and (max-width: 550px) { or whichever width you prefer.

              Add what in the @media only screen and (max-width: 550px) ??

              Also, I changed the menu background color as instructed in the responsive section but it’s still black.

              Thanks!

              #19083
              Wes
              Moderator

                The area I was referring to is your Responsive Section and it’s located near the bottom of your CSS. If you want, I can add this in for you. All I would need is a temporary login and I can go in and add those changes.

                Just let me know!

                #19105
                Stephanie
                Customer
                  This reply has been marked as private.
                  #19112
                  Wes
                  Moderator
                    This reply has been marked as private.
                    #19187
                    Stephanie
                    Customer

                      Hi Wes,

                      I added you as an admin. I don’t see the message in this thread where I let you know. I can send the info over again here shortly.

                      I was hoping you could reduce all the white padding around my top slider on mobile devices (all screen sizes basically), change the mobile header background to white and menu items to black on mobile devices as well (tablets and phones).

                      Also is it safe for me to install the latest Genesis theme update?

                      Thanks,
                      Stephanie

                      #19206
                      Stephanie
                      Customer
                        This reply has been marked as private.
                        #19207
                        Wes
                        Moderator

                          I just checked your site but I don’t see any white space anywhere? I checked on my iPhone, resized my browser, and also checked on all mobile devices here – http://www.studiopress.com/responsive/ but I still don’t see any white space.

                          Also, the menu already has a white background with black font. Did you already add these changes in or am I missing something?

                          #19214
                          Stephanie
                          Customer
                            This reply has been marked as private.
                            #19224
                            Stephanie
                            Customer
                              This reply has been marked as private.
                              #19226
                              Wes
                              Moderator

                                “I guess you did this for me previously? Or either I did it correctly and just didn鈥檛 know how to clear my cache on mobile devices!”

                                Nope, that was all you 馃檪 When I logged in I didn’t need to change or adjust anything since it was already setup. So all the adjustments that you made are the reason it was working. It probably was your cache showing the old version of the site. When I make edits to the CSS I usually just click my Reload button so the new changes show up.

                                To remove the featured images from showing on regular Single Pages, look in your functions.php file and remove or comment out this code –

                                //* Add featured image above the entry content
                                add_action( 'genesis_entry_header', 'aspire_featured_photo', 5 );
                                function aspire_featured_photo() {
                                
                                	if ( is_attachment() || ! genesis_get_option( 'content_archive_thumbnail' ) )
                                		return;
                                
                                	if ( is_singular() && $image = genesis_get_image( array( 'format' => 'url', 'size' => genesis_get_option( 'image_size' ) ) ) ) {
                                		printf( '<div class="featured-image"><img src="%s" alt="%s" class="entry-image"/></div>', $image, the_title_attribute( 'echo=0' ) );
                                	}
                                
                                }
                              Viewing 14 posts - 1 through 14 (of 14 total)
                              • You must be logged in to reply to this topic.