Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #575234

    Hello,
    I would like to add a Second Logo in my header. I followed the instruction here.
    https://kriesi.at/support/topic/2-logo-on-the-header/
    However, this does not work when in scroll down, neither on mobile menu.
    It create a secon menu display.
    Last but not least, in Arabic, i switch the logo and menu position. And it will not work anymore.

    Any idea ?

    #575242

    Hello!

    It is possible but it would require a heavy modification to the theme, unfortunately that’s beyond our support scope. You can request a customisation quote from a third-party provider here.

    Regards,
    Josue

    #575310

    Hi,
    undestood, thanks for your quick anwser.
    I finally tried to do it the dirty way. I added a widget, in which i created a blocked A tag.
    <a class="sctda_link" href="mylin"></a>

    with this CSS applied :

    
    @media only screen and (max-width: 767px) {
    	a.link_sctda {    
    	display: block;
        height: 106px;
        width: 187px;
        background: #0F0;
        z-index: 9999;
       }
    }
    @media only screen and (min-width: 768px) {
    a.link_sctda {    display: block;
        height: 106px;
        width: 187px;
        background: #0F0;
        z-index: 9999;
        position: relative;
        right: 100px;
        top: -31px;
        float: right;}
    }

    It works just fine in full screen but, on mobile, my mobile menu is pushed down by 106px.
    I can’t figure out how to make my div not clearfixed.
    Can you help me out with this one ?

    • This reply was modified 8 years, 9 months ago by Toulmonde.
    #575350

    .

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.