Viewing 10 replies - 1 through 10 (of 10 total)
  • Digest WP

    (@jay-stankiewicz)

    Hello,

    In your WordPress dashboard you can go to Settings>Media and then you can change the upload sizes.

    Thread Starter Haaps

    (@haaps)

    Unfortunately that doesn’t work. The logo is being resized automatically to a max width and height. It’s some sort of custom feature of the template I’m using. The sizes I select within the media controls have no effect.

    Thanks

    Digest WP

    (@jay-stankiewicz)

    Next thing would be to edit the header.php and add the logo manually to overide the theme settings. Or check the functions file to edit the size.

    Jay S

    Firstly you have to commented the function ‘simplecatch_headerdetails();’ which define in header.php file of your theme . After this you can use this code in ‘header.php’ file to define the size of the logo. This code will be used after this class ‘layout-978’:

    <div class="logo_wrap">
                        <span>
                                <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
                        </span>
                    </div>

    And you also add the class in style.css of your theme :

    /*add the logo class*/

    .logo_wrap{
    margin: 8px 0 15px 0;
    float: left;
    font-size: 30px;
    line-height: 36px;
    width: 169px;
    height: 78px;
    }
    .logo_wrap a {
    color: #000;
    font-weight: bold;
    text-decoration: none;
    display: block;
    width: 90px;
    height: 89px;
    text-indent: -999em;
    background: url(images/logo.png) no-repeat;
    }

    Sorry i was wrong. you have to change only in style.css of your theme.
    Add in style.css:

    h1#site-title a img {
    	max-height: 190px;  //add the max-height a/c to you
    }
    Thread Starter Haaps

    (@haaps)

    The last option you wrote doesn’t seem to work either. Perhaps your previous post was correct?

    Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Don’t make changes to the stylesheets of your theme, as once the theme is updated, your changes will be lost.

    Before you add styles, make sure you do so in either of the following:
    A Child Theme – https://codex.www.ads-software.com/Child_Themes
    A Custom Style plugin – https://www.ads-software.com/extend/plugins/custom-style/

    Theme Author Catch Themes

    (@catchthemes)

    Hi Andrew,

    There is Custom CSS Box in the Theme Option where you can add in few simple css and the best option is always child theme.

    Regards,
    Sakin

    hey,

    i have the same problem, wp automatically resizes my uploaded logo.

    Here is the link to my homepage : https://philippe-eicher.de/wordpress/

    Can you help my with a solution that works, which parameters do i have to edit / add in the style.css of the theme ?

    thanks in advance

    Theme Author Catch Themes

    (@catchthemes)

    @deflepp: You can upload logo from Logo option to any size you like.

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘[Theme: Simple Catch] Logo Sizing’ is closed to new replies.