serenae

Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • in reply to: widget background #9998
    serenae
    Customer

      You should be able to do that with the following code:

      .home .site-inner {
          background-color: #396B72;
      }
      
      .sidebar .widget {
          background-color: #F2F2F2;
          border-bottom: none;
          padding: 1.875rem;
      }
      in reply to: Center primary navigation menu #9996
      serenae
      Customer

        That worked perfectly, thanks! Rather than messing with the theme css file, I just added this to Jetpack’s custom code:

        .genesis-nav-menu .menu-item {
        	display: inline-block;
        	text-align: center;
        	float: none;
        }
        
        .nav-primary .genesis-nav-menu {
        	text-align: center;
        }
        
        in reply to: Center primary navigation menu #9974
        serenae
        Customer

          So I need a better way to center the menu after all. The fix I came up with doesn’t work well in all browsers. Shouldn’t there be a simple way to center the primary navigation menu by using text-align: center? I’ve seen it work on other Genesis websites, like this one: http://thewebshoppe.net/ Help!

          in reply to: Static or blog front page? #9317
          serenae
          Customer

            Do you want to put the slider back into the static front page? If so, all you have to do is go to Widgets and drag the “Genesis Responsive Slider” widget into the “Slider Wide” sidebar.

            in reply to: Added additional widget areas, now responsiveness is broken #9309
            serenae
            Customer

              That worked wonderfully, thank you!

              in reply to: Center primary navigation menu #9301
              serenae
              Customer

                I did what I mentioned above and it looks okay so far- I was just concerned that maybe it wasn’t the cleanest way to accomplish that.

                in reply to: Added additional widget areas, now responsiveness is broken #9292
                serenae
                Customer

                  Okay, so I added the !important tags to the original CSS file in the places you specified, which made a big difference, but when I modify welcome feature 4 like this

                  .welcome-feature-4 {
                      float: left;
                      width: 100%;
                  }

                  it just moved that entire block to the next line. Did I miss something? Thanks!

                  in reply to: Added additional widget areas, now responsiveness is broken #9281
                  serenae
                  Customer

                    Ah, I’ll give that a shot. I’ve been adding my css through the ‘custom css’ feature of Jetpack, since I didn’t want to go through the hassle of updating the CSS every time the theme is updated.

                    in reply to: How to wrap the sidebar widgets #9278
                    serenae
                    Customer

                      All right, so the easiest way is to add some custom CSS. I prefer to do it by using the ‘custom css’ feature in Jetpack, but you can also look for .sidebar .widget in the theme’s CSS file and modify it directly.

                      .sidebar .widget {
                          background-color: #FFFFFF;
                          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
                          padding: 10px;
                      }

                      I added a little padding and the same shadow you have in the main content area. Just remove the box-shadow line if you don’t want it.

                      in reply to: Added additional widget areas, now responsiveness is broken #9274
                      serenae
                      Customer

                        If I remove that custom CSS, then the four welcome widgets aren’t lined up anymore. Is there a way to keep them all in line on the larger screen but responsive for smaller displays?

                        in reply to: How to wrap the sidebar widgets #9263
                        serenae
                        Customer

                          The only widgets I see are the social media links (“connect with us”) and the subscribe form (“free powerful tools”). Are these the widgets you want to wrap?

                          in reply to: Center primary navigation menu #9091
                          serenae
                          Customer

                            Okay, so here’s a fix that worked for me. Not sure if it’s the best way, but it’s the best I could come up with.

                            To center the logo:
                            .site-header {
                            background-position: center top !important;
                            max-width: none;
                            }

                            To center the primary navigation menu (change max-width to fit your menu):
                            .nav-primary {
                            max-width: 500px;
                            }

                            in reply to: Center primary navigation menu #9002
                            serenae
                            Customer

                              Here’s the link, though it shouldn’t really matter because it’s just a standard Epik install: http://loveoffrench.org/

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