Logo Pixelation

Homepage Community Forums Aspire Theme Support Logo Pixelation

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #18136
    sallen5280
    Customer

      For some reason the logo on my site is pixelating when it expands. I used the recommended pixel dimensions for the Aspire theme. Am I missing something?

      dev.checkmarksbookkeeping.com

      Thank you!

      #18137
      Wes
      Moderator

        Your image height is 60px naturally, but it’s being stretched to 76px since that is what is inside the CSS…(which would also stretch the width too since changing one changes the other).

        So if you change the 76px on line 1235 in your style.css to 60px instead, then it should show the regular size of the image –

        .header-image .site-title > a {
        	background-size: contain !important;
        	display: block;
        	height: 76px;      <---- Change this to 60px;
        	text-indent: -9999px;
        }

        Let me know if that helps.

        #18138
        Wes
        Moderator

          Also, you can upload any size Logo/Image you want, so you’re not limited to 300px x 60px. If you want to upload a larger or smaller image, just let me know.

          #18139
          sallen5280
          Customer

            Huh, very cool. Thank you so much, Wes. One more question for you regarding CSS…

            For some reason I am not able to pull up the full style.css from within WordPress. Instead of Appearance > Editor, I have Appearance > Edit CSS. Is there something within the theme that prevents users from accessing the full style sheet? I have been looking for an answer to this one for quite some time now and I’ve resorted to just editing the CSS and using FTP, but it would be great if I could edit it from within WP.

            Thanks again.

            Scott

            #18141
            Wes
            Moderator

              No there’s nothing within the theme that would prevent that from showing. I’ve seen a couple users who run into that same issue of not being able to access the editor in the past, but I still don’t know why.

              Most users are able to access it with no problem, and I’m also able to make edits with the WP editor so I know it can’t be the Child Theme. If I had to guess, I think it may have to do with Hosting companies and their “One Click” install process. Is this how you setup your WP install? Or did you manually install it through FTP?

              I personally install everything manually through FTP, so maybe that’s why it hasn’t happened to me. I have used a Once Click install in the past, but was still able to access the editor. This may have nothing to do with it, but that’s the only thing I can think of.

              The only other thing is making sure you have full Admin Abilities. I assume you already do, but it would be best to make sure.

              #18142
              sallen5280
              Customer

                Very interesting. I usually manually install as well, but I believe I did the one click thing on this one, being that my client uses GoDaddy. I will look into that. Thanks again, Wes.

                #18157
                Wes
                Moderator

                  You’re Welcome!

                  If you find out that it is the “One Click” that causes the issue, please let me know. I’ve been trying to figure it out.

                  #18158
                  sallen5280
                  Customer

                    I figured it out. For whatever reason, when you do a one-click install, the wp-config.php file inserts a line of code disallowing editing.

                    define(‘DISALLOW_FILE_EDIT’, false);

                    Changing it from ‘true’ to ‘false’ is all you need to do.

                    #18160
                    Wes
                    Moderator

                      Awesome! Thanks for letting me know!

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