Terry Wiest
asked 9 years ago

I’d like to change the "Small Logo" size on my pages. Where and how can I change the dimensions of what will display on each page?

Thank you

zedaa
replied 9 years ago

I have website http://zedaa.net/results-date/ap-eamcet-results-2015-apeamcet-org/ which is on WordPress and looking to change my logo size which is currently small in size and am using thesis theme.

dominic Staff
replied 9 years ago

After changing your logo image (e.g: 450 x 90px), you can add the following code to the style.css file:

.template-single .header img {
    height: auto;
    width: auto;
}

Hope this helps !

terry wiest
replied 9 years ago

Tried this too – didn’t work

1 Answers
DominicStaff
answered 9 years ago

Hi,
To change the "Small Logo" size in the DW focus theme, you can add the following code to the stye.css file:

#colophon #site-info .small-logo {
  height: ..px; 
  width: ..px;
}

Hope this helps !

terry wiest
replied 9 years ago

It’s actually the regular logo – sorry.
Anyhow I added this code to the stye.css file – but no luck
/*
Theme Name: DW Focus
Theme URI: http://www.designwall.com/wordpress-theme/dw-focus
Author: the DesignWall team
Author URI: http://www.designwall.com
Description: Responsive News WordPress Theme
Version: 1.1.0
License: GNU General Public License
License URI: license.txt

colophon #site-info .logo {

height: 230px;
width: 230px;
}

*/

dominic Staff
replied 9 years ago

You can add the following code to the style.css file:

/*
Theme Name: DW Focus
Theme URI: http://www.designwall.com/wordpress-theme/dw-focus
Author: the DesignWall team
Author URI: http://www.designwall.com
Description: Responsive News WordPress Theme
Version: 1.1.0
License: GNU General Public License
License URI: license.txt
*/

colophon #site-info .small-logo{
   height: 230px;
   width: 230px;
}

Regards,

Powered by DW Question & Answer Pro