Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #950149

    Hello there,

    mobile fixed links under the logo

    as you can see in the picture , permanent link left under image

    • This topic was modified 7 years, 1 month ago by berkant53.
    #950169

    Hey Turgay,

    You have following custom CSS code

    .logo img {
        height: 160% !important;
        max-height: 141px !important;
    }
    
    .logo img {
        height: 160% !important;
        max-height: 130px !important;
    }

    Please change it to following one

    @media only screen and (min-width: 769px) {
    .logo img {
        height: 160% !important;
        max-height: 141px !important;
    }
    
    .logo img {
        height: 160% !important;
        max-height: 130px !important;
    }}

    Best regards,
    Yigit

    #950183

    Yiğit yazıyı nasıl ortalarım aşagı taşmış durumda bunuda düzelte bilirmiyiz?

    • This reply was modified 7 years, 1 month ago by berkant53.
    #950197

    Hi,

    Lutfen assagidaki koduda Quick CSS alanina ekleyin

    @media only screen and (max-width: 767px) { 
    .responsive .title_container .breadcrumb {
        left: auto;
        right: 0;
    }}
    

    Fakat kucuk ekranlarda yine ayni sorun olacaktir. Kucuk ekranlarda breadcrumbsi silme alternatifi sizin icin uygunsa assagidaki kodu kullanabilirsiniz

    @media only screen and (max-width: 660px) { 
    .responsive .title_container .breadcrumb {
        display: none; 
    }}

    Best regards,
    Yigit

    #950210

    YİĞİT thank you so much.
    the solution was
    subject is closed

    #950220

    Hi,

    You are welcome! Let us know if you have any other questions or issues :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘mobile fixed links under the logo’ is closed to new replies.