Hello ravi_9793,

I need to make my custom logo appear bigger on the touch theme. The original file that I uploaded was 500px wide and 200px high. Your theme seems to automatically resize the logo to be smaller than the original file size. I tried to see if there was a CSS setting that constrained the logo and I found it in the CSS for #header-top #logo and changed the width to my original size. However, it didn't do it. How do I resize the logo to the size I want it to be?

Your suggestions and advice are greatly appreciated!
Thank you,
Chris

Comments

ravis’s picture

Assigned: Unassigned » ravis
Status: Active » Closed (fixed)
  1. Open style.css in any text editor.
  2. Find following code:
  3. #header-top #logo {
    float: left;
    width: 300px;
    margin-top: 10px;
    }
  4. Change this to:
  5. #header-top #logo {
    float: left;
    width: 500px;
    margin-top: 10px;
    }
  6. Clear drupal cache and browser cache. Done!!
clchleung’s picture

Hello ravi_9793,

Your tips worked great for me! Thank you for your help!

_Chris