• Hey…
    Sorry if I made other posts in the wrong secction, but I couldn’t find this one.
    I have a problem. I have googled it and found several ways to solve it, but I tried all of them and the problem isn’t solved yet. I hae to say that I use the nicebird theme.
    I want to increase the size of my logo to like…500 x 122 px or smth like that. This is my website: https://www.animalblog.ro/
    I tried 2 or 3 CSS plugins, but none of them was successfull.
    Can you please help me? Because it’s waaaay too small.

Viewing 2 replies - 1 through 2 (of 2 total)
  • hi @sta83

    can u edit css file from dashborad if u can then replace this with

    .logo {
    display: inline-block;
    float: none;
    width: 270px;
    height: auto;
    max-width: 270px;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -135px;
    }

    this one

    .logo {
    display: inline-block;
    float: none;
    height: auto;
    max-width: 450px;
    position: absolute;
    left: 50%;
    top: 0;
    margin-left: -135px;
    }

    thank u

    • This reply was modified 7 years, 7 months ago by tsuzan.
    Thread Starter sta83

    (@sta83)

    In which file?
    In style.css it only tells some information about the theme and in header.php it says this:

    <!– Header Section Starts Here –>
    <header id=”header”>
    <div class=”primary-header”>
    <div class=”container”>
    <div class=”row”>
    <div class=”col-sm-12″>
    <?php $site_logo = (ot_get_option(‘site_header_logo’)) ? ot_get_option(‘site_header_logo’) : NB_THEME_URL . “/assets/img/logo.png”; ?>
    ” class=”logo”>” alt=”<?php bloginfo(‘name’) ?>” title=”<?php bloginfo(‘name’) ?>” />
    <?php do_action(“nb_social_follow_menu”); ?>
    <div class=”header-search”>
    <?php do_action(“nb_search_form”); ?>
    </div>
    </div>
    </div>
    </div>
    </div>
    <div class=”header-wrap”>
    <?php
    $final = ”;
    if(is_home()) : $final = ”; else :
    //error_reporting(0);
    $category = get_the_category();
    if(!empty($category[0]->cat_ID)){ $final = count($category[0]->cat_ID); }
    endif;

    if(empty($final) || ot_get_option(‘ot-archive-layout’) != ‘column’):
    do_action(“nb_menu_nav_header”);
    endif;
    ?>
    </div>
    </header>
    <!–Header Section Ends Here –>

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can’t increaso logo size’ is closed to new replies.