Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • jooservices Friend
    #554699

    Hi there,
    # At first you should not touch into less files except you know about it. But you still lost your change when do template upgrade
    And you’ll need compile after changed.
    # Same with core css file.
    Please work on custom.css


    http://www.t3-framework.org/documentation/customization.html

    You’ll also need a little know about css priority


    https://developer.tizen.org/dev-guide/2.2.1/org.tizen.web.appprogramming/html/guide/w3c_guide/dom_guide/html_priorities_css.htm


    http://monc.se/kitchen/38/cascading-order-and-inheritance-in-css

    Thank you,
    Viet Vu

    vmalyshev Friend
    #554700

    ok then should I put back initial parameters into css and variable files?
    As for cuscom.css, do you mean I should create file with the followng content and in the same order?

    http://www.t3-framework.org/documentation/customization.html
    https://developer.tizen.org/dev-guide/2.2.1/org.tizen.web.appprogramming/html/guide/w3c_guide/dom_guide/html_priorities_css.htm
    http://monc.se/kitchen/38/cascading-order-and-inheritance-in-css

    vmalyshev Friend
    #554701

    you still havnt answered question about logo though

    You can see what logo looks like on this website http://www.iandmworld.com/

    Pankaj Sharma Moderator
    #554709

    HI
    you can try this
    add this css code in your css/custom.css file

    .logo-image a {
    height: 80px;
    width: 120px;
    background-size: 118px;
    }

    id there is no custom.css then create a file with name custom.css .
    you can adjust the background-size , width , height value as per your need .

    Always take a full backup of your site before any custom work

    vmalyshev Friend
    #554715

    seems to work thnks

    vmalyshev Friend
    #554746

    BUT – in iOS – logo looks horrible. Here’s the picture – whats wrong with that?
    Ok on Android devices though.
    Thanks


    1. Mobile
    Pankaj Sharma Moderator
    #554824

    Replace previous code with this code

    @media (min-width: 460px){
    .logo-image
    a{height:250px;width:188px;background-repeat: no-repeat; display: block; background-size:190px;}}

    and this code for mobile

    @media (max-width: 460px){
    .logo-image a {
    background: url("/templates/ja_smashboard/images/logo-mobile.png");
    background-size: 78px;
    height: 84px;
    width: 84px;
    background-repeat: no-repeat;
    }}

    Let me know if it helps

    vmalyshev Friend
    #554866

    Great! thanks.
    Also, can not work out why at the front of list of categories I have the white block with number of entries and RSS. Tried all options, but cant get rid of it.
    Thanks


    1. Block
    Pankaj Sharma Moderator
    #554867

    HI please open a new thread for a new/different issue .
    we are happy to help you there 🙂

    vmalyshev Friend
    #554869

    OK started a new one
    But on the previous note, code works ok for android, improved a little for iOS but not completely. Ive tried to make it wider and defined 111px width – no changes. Hers what it looks like (ignore t he big one lower – its hte one at the top i need to look fine)
    Thanks


    1. Ios
    Pankaj Sharma Moderator
    #554917

    HI
    Replace this code from custom.css that i suggested for mobile

    @media (max-width: 460px){
    .logo-image a {
    background: url("/templates/ja_smashboard/images/logo-mobile.png");
    background-size: 78px;
    height: 84px;
    width: 84px;
    background-repeat: no-repeat;
    }}

    with this code

    @media (max-width: 460px){
    .logo-image a {background: url("/templates/ja_smashboard/images/logo-mobile.png");
    background-size: 110px;
    height: 100px;
    width: 200px;
    background-repeat: no-repeat;
    max-width: 250px;
    }

    .logo-image h1 {
    margin-left: 0px;
    margin-right: 0;
    max-width: 270px;
    width: 186px;
    }}

    Save it clear cache and check

    vmalyshev Friend
    #554979

    seems to work, thank you!

    Pankaj Sharma Moderator
    #554981

    <em>@vmalyshev 452772 wrote:</em><blockquote>seems to work, thank you!</blockquote>
    Please confirm if its working so that i can mark this thread as solved .

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

This topic contains 14 replies, has 3 voices, and was last updated by  Pankaj Sharma 10 years ago.

The topic ‘Logo size’ is closed to new replies.