header logo does not integrate well

Homepage Community Forums Ally Theme Support header logo does not integrate well

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #13177
    edwardor
    Customer

      Hi,

      My site http://www.halescale.com is currently in the making, and when I upload a header image 960 × 80 pixels in size, it pushes the navigation down and generally looks horrible, I just want to have a simple logo left of the navigation. How do I do that?

      Thank you.

      #13187
      Eric
      Customer

        You would use the WordPress header uploader to upload a header. First figure out the size of your image, and then adjust the image size in your functions file to match the exact size of the logo. Then once you upload it will upload without needing to crop. Once you do that, if your logo is too long for mobile devices, then you would need to add this code in your responsive section –

        .header-image .site-title a {
            background-size: contain !important;
        }

        This is the default way to upload a logo in any Genesis theme, and all logos are different sizes. So once you upload your logo let me know and I can take a look to make sure it shows up properly on a mobile device.

        Here is a tutorial on how to do it – http://bit.ly/1nxutU3


        I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

        #13242
        edwardor
        Customer

          Thanks for the input, I added that code you suggested under this section:
          /* Responsive Design
          ———————————————————— */

          And I uploaded the header image file to the exact specifications of 960×80 but it still pushes the navigation down and it’s not resizing under a mobile device. Any ideas?

          #13243
          Eric
          Customer

            Your title area (logo) and nav are too wide. Both the title area and widget area can’t both fit inside of that space unless you decrease the size of one or the other. Your title area is set at 400px (which is almost half) and your nav area is around 630px. The size of that entire space is only 960px, so by adding both of those together it would equal over 1000px. So you’ll have to either make the logo area smaller or decrease the nav.

            I took a screenshot to give you a visual of what I’m talking about – http://i.imgur.com/R9xxyhP.png

            The blue part that is highlighted is the logo’s hyperlink (the clickable area). Once you decrease that, then the navigation will be able to fit inside that area. Which means it will look like this – http://i.imgur.com/jvfQM3a.png

            You can adjust the size of the logo’s hyperlink (clickable blue area) on line 250 in your css –

            .header-image #title-area, 
            .header-image #title, .header-image #title a {
                display: block;
                float: left;
                height: 100px;
                overflow: hidden;
                padding: 0;
                text-indent: -9999px;
                width: 400px;
            }

            The widget area’s width is set at auto by default. You can add a width to it if you want on line 240 in your css, but you may not need to –

            #header .widget-area {
                float: right;
                padding: 20px 0 0;
                width: auto;
            }

            Keep in mind, you can still use the Primary Navigation area instead of the header right widget area if you want to. The Primary Nav would show up under the logo area, starting from the left.

            Any reason why you’re not using the latest version? It looks like you’re using version 1.0


            I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

            #13251
            edwardor
            Customer

              Hi,

              Thanks, I removed “home” and changed the

              .header-image #title-area, 
              .header-image #title, .header-image #title a {
                  display: block;
                  float: left;
                  height: 100px;
                  overflow: hidden;
                  padding: 0;
                  text-indent: -9999px;
                  width: 400px;
              }
              

              To:

              .header-image #title-area, 
              .header-image #title, .header-image #title a {
                  display: block;
                  float: left;
                  height: 100px;
                  overflow: hidden;
                  padding: 0;
                  text-indent: -9999px;
                  width: 200px;
              }
              

              Is there some sort of built in Genesis/Ally caching? My changes do not seem to be reflected on the site (yet).

              About the upgrade of the theme, I had no idea there was an upgrade. There is no automated upgrade option in WordPress. Do I need to manually upgrade it? I wasn’t able to find documentation on it.

              Thanks for your help.

              #13252
              edwardor
              Customer

                Interesting, it took a while, but updated, is it some sort of caching thing? Thanks for your help so far. I just need to update the theme now I think 🙂

                #13259
                Eric
                Customer

                  No the theme itself doesn’t affect cache. That depends on your browser, host/server, and if you’re using a caching plugin. Otherwise all Genesis child themes take any changes immediately. Just hit your reload button on your browser and it should instantly clear your cache and show you the latest changes.


                  I create awesome sites for awesome people! Contact me if interested – ericsanchez1585@gmail.com

                Viewing 7 posts - 1 through 7 (of 7 total)
                • You must be logged in to reply to this topic.