Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • tshovel Friend
    #188692

    Can not change logo size. How can I achieve that?
    Thanks in advance

    James G Friend
    #497961

    Create your new logo then you can change the size in the variables.less file and compile less to css.

    However it seems the width doesn’t go past 130px which i have asked for help in another thread here.

    MoonSailor Friend
    #497983

    Hi,

    Open file “templates/ja_beranis/less/style.less” and find code :

    [PHP]
    // Logo Image
    // ———-
    .logo-image {
    overflow: hidden;
    h1 {
    display: block;
    font-size: 0;
    a {
    background-image: url(“@{T3LogoImage}”);
    background-repeat: no-repeat;
    width: @T3logoWidth;
    height: @T3logoHeight;
    span, small {
    display: none;
    }
    }
    }
    [/PHP]

    and change it to :
    [PHP]
    // Logo Image
    // ———-
    .logo-image {
    overflow: hidden;
    h1 {
    display: block;
    font-size: 0;
    a {
    background-image: url(“@{T3LogoImage}”);
    background-repeat: no-repeat;
    width: @T3logoWidth;
    height: @T3logoHeight;
    span, small {
    display: none;
    }
    }
    }
    [/PHP]

    Or you can edit in file “templates/ja_beranis/css/template.css”, find css code :
    [PHP]
    .logo-image h1 a {
    background-image: url(“../images/logo.png”);
    background-repeat: no-repeat;
    width: 160px;
    height: 50px;
    }
    [/PHP]

    and change it to :
    [PHP]
    .logo-image h1 a {
    background-image: url(“../images/logo.png”);
    background-repeat: no-repeat;
    width: 160px;
    height: 50px;
    }
    [/PHP]

    Open file “templates/ja_beranis/tpls/blocks/header.php” , find code:

    [PHP]
    <!– LOGO –>
    <div class=”span2 logo”>
    [/PHP]

    Change it to :

    [PHP]
    <!– LOGO –>
    <div class=”span3 logo”>
    [/PHP]

    find code :

    [PHP]
    <nav id=”t3-mainnav” class=”t3-mainnav navbar-collapse-fixed-top span10″>
    [/PHP]

    change to :

    [PHP]
    <nav id=”t3-mainnav” class=”t3-mainnav navbar-collapse-fixed-top span9″>
    [/PHP]

    Regards

    elvisglazier Friend
    #498002

    It doesn’t go past 130 but you can set the overflow to visable

    MoonSailor Friend
    #498011

    Hi,

    Pls check my above reply.

    Regards

Viewing 5 posts - 1 through 5 (of 5 total)

This topic contains 5 replies, has 4 voices, and was last updated by  MoonSailor 10 years, 10 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum