Okay
  Public Ticket #1248913
Logo Resize
Closed

Comments

  • keynriklogin started the conversation

    Howdy,

    Nice theme.

    I want to freely adjust the width and height of the logo.
    How can I do that?

    If CSS, please guide me still.

    http://caritasloans.com

    Warm regards.

  •  2,009
    Ocean replied

    Hi,

    If you want change logo size larger, you need change column include logo image.

    Now max width is 160px;

  • keynriklogin replied

    Howdy,

    Screenshot please.

    Thanks.

  •  2,009
    Ocean replied

    Hi,

    Open file theme/borrow/header.php

    find: logo then change


    col-md-9 => col-md-6

  •   keynriklogin replied privately
  •  2,009
    Ocean replied

    Hi,

    you using header 3. 

    you can open file wp-content/theme/borrow/framework/headers/header3.php

    find "logo" then change code

    from

    <div class="row">
                <div class="col-md-3 col-sm-12 col-xs-6">
                    <!-- logo -->
                    <?php if($borrow_option['logo']['url'] != ''){ ?>
                    <div class="logo"> 
                        <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
                            <img src="<?php echo esc_url($borrow_option['logo']['url']); ?>" alt="">
                        </a>
                    </div>
                    <?php } ?-->   
                </div>
                <!-- logo -->
                <div class="col-md-9 text-right hidden-xs">
                    <div class="header-action">
                        <!--?php if($borrow_option['head_bt1']!=''){ ?--><a href="<?php echo esc_url($borrow_option['head_link1']); ?>" class="btn btn-primary"><!--?php echo esc_attr($borrow_option['head_bt1']); ?--></a><!--?php } ?-->
                        <!--?php if($borrow_option['head_link1']!=''){ ?--><a href="<?php echo esc_url($borrow_option['head_link2']); ?>" class="btn btn-default"><!--?php echo esc_attr($borrow_option['head_bt2']); ?--></a><!--?php } ?-->
                    </div>
                </div>
            </div>
    

    to 

    <div class="row">
                <div class="col-md-5 col-sm-12 col-xs-6">
                    <!-- logo -->
                    <?php if($borrow_option['logo']['url'] != ''){ ?>
                    <div class="logo"> 
                        <a href="<?php echo esc_url( home_url( '/' ) ); ?>">
                            <img src="<?php echo esc_url($borrow_option['logo']['url']); ?>" alt="">
                        </a>
                    </div>
                    <?php } ?-->   
                </div>
                <!-- logo -->
                <div class="col-md-7 text-right hidden-xs">
                    <div class="header-action">
                        <!--?php if($borrow_option['head_bt1']!=''){ ?--><a href="<?php echo esc_url($borrow_option['head_link1']); ?>" class="btn btn-primary"><!--?php echo esc_attr($borrow_option['head_bt1']); ?--></a><!--?php } ?-->
                        <!--?php if($borrow_option['head_link1']!=''){ ?--><a href="<?php echo esc_url($borrow_option['head_link2']); ?>" class="btn btn-default"><!--?php echo esc_attr($borrow_option['head_bt2']); ?--></a><!--?php } ?-->
                    </div>
                </div>
            </div>
    
  •   keynriklogin replied privately
  •  2,009
    Ocean replied

    Have done.

    please check.

  •   keynriklogin replied privately
  •  2,009
    Ocean replied

    Hi,

    1. We'll update this probem in future.

    2 + 4. Have done/ please check.

    3. Button How To Apply work fine. please check.