Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #607589

    Hi I need to put the orange KTM Logo logo in the header on the right just after the MAIL icon for example. In other words I need to do to exactly this effect with the KTM logo on the official website:
    Like KTM official website

    My site (under construction) is this (get the future homepage): http://www.ferrandomotor.it/nuova-home/

    I follow this instructions, but with partial success as you can see:
    My homepage: logo needs to be up, bigger and on the right 100%

    My image is here.

    thanks in advance ,
    Nicola

    • This topic was modified 8 years, 7 months ago by niguli.
    #607596

    Hi Nicola!

    Please refer to this post – http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/ and add your logo using widget area to your header.

    Best regards,
    Yigit

    #607601

    HI Yigit,
    that’s exactly what I did by now and linked in my request above :(
    probably the css customization needs some improvement:

    #header .widget {
      left: 98%;
      padding-top: 0;
      position: absolute;
      top: 0px;
      transform: translate(-50%);
      z-index: 999;
    }
    
    • This reply was modified 8 years, 7 months ago by niguli.
    #608016

    Hi,

    Try adding this argument to your CSS and then play with the values to get it right:

    min-width: 200px;
    

    Best regards,
    Rikard

    #609792

    Hi Richard, thank you. Can you help me more?
    here is the situation: http://www.ferrandomotor.it/servizi/
    I need the logo to not override any menu voices and, if possible, to be at the top right of the header

    #610971

    Hi!

    The current layout of the header will not work well the “ktm” image. You have to hide it once it started to overlap the menu items.

    @media only screen and (max-width: 1300px) {
    #header .widget {
       display: none;
    }
    }

    If you have another idea, please provide a screenshot. We’ll try to implement it.

    Regards,
    Ismael

    #611500

    Hi Ismael, I added your code.

    My idea is to have something similar to this:

    or the second logo can be placed at the very right-top after the MAIL icon

    • This reply was modified 8 years, 7 months ago by niguli.
    #613416

    Hi!

    Please remove the widget then add this css code:

    #header_meta .container:before {
        content: url('http://www.ferrandomotor.it/wp-content/uploads/2016/04/logo-ktm-1.png');
        position: absolute;
        right: -100px;
    }

    Cheers!
    Ismael

    #613687

    almost perfect Ismael, thank you.

    Here is my last problem:

    – secondary logo is partially hidden when screen size is less than 1500px (circa):
    secondary logo is partially hidden
    – logo is ok when screen size is > 1500px:

    logo is ok

    thank you

    #613758

    Hi!

    Please add following code to Quick CSS as well

    @media only screen and (max-width: 1500px) {
    #header_meta .container:before { right: 0; }}

    Regards,
    Yigit

    #613771

    Hi Yigit,
    the media query does not work for me.
    Take a look:
    http://www.ferrandomotor.it/nuova-home/

    #615692

    Hey!

    Hide it on screen sizes lower than 1500px or compromise the header container width:

    @media only screen and (max-width: 1500px) {
    .responsive #header_main .container {
        max-width: 80%;
    }
    }

    Set the Header > Mobile Menu > Header Mobile Menu activation to the second option.

    Best regards,
    Ismael

    #615759

    I’m not sure It all works… can you take a look?

    my quick css is:

    
    /*  FERRANDO MOTOR QUICK CSS */
    @media only screen and (max-width: 1500px) {
    #header_meta .container:before { right: 0; }}
    
    @media only screen and (max-width: 1500px) {
    .responsive #header_main .container {
        max-width: 80%;
    }
    }
    
    .phone-info span {
    font-size: 14px;
    }
    
    input#s {
    color:#fff !important;
    
    }
    
    #header_meta .container:before {
        content: url('http://www.ferrandomotor.it/wp-content/uploads/2016/04/logo-ktm-1.png');
        position: absolute;
        right: -100px;
    }
    
    /*
    @media only screen and (max-width: 1300px) {
    #header .widget {
       display: none;
    }
    }
    */
    /*
    #header .widget {
      left: 98%;
    min-width: 200px;
      padding-top: 0;
      position: absolute;
      top: 0px;
      transform: translate(-50%);
      z-index: 999;
    }
    */
    
    label.input_checkbox_label {
    font-size: 70% !important;
    }
    input#avia_1_1.text_input.is_empty, textarea#avia_7_1.text_area, select#avia_6_1.select, input#avia_2_1.text_input.is_email, input#avia_3_1.text_input.is_empty, input#avia_4_1.text_input.is_empty, textarea#avia_5_1.text_area.is_empty, input#avia_3_1.text_input.is_phone, input#avia_4_1.avia_datepicker.text_input.hasDatepicker, select#avia_5_1.select {
    
    font-family: 'trade-gothic-20cn' !important;
    }
    
    #s {
    color:#000 !important;
    font-family: 'trade-gothic-20cn' !important;
    }
    input.button {
    font-family: 'trade-gothic-20cn' !important;
    }
    /*div.container_wrap.container_wrap_logo {
        display: none;
    } */
    
    .page-id-9 #header_meta { display: none; }
    input#s {color:#000;}
    span.copyright {
    width: 100%;
      font-size: 14px;
    text-align: center;
    }
    

    and theme options is:

    • This reply was modified 8 years, 7 months ago by niguli.
    #617334

    Hi!

    posting all your CSS code here does not help us at all. Please make sure it works or not and if does not work as expected, then let us know.

    Best regards,
    Andy

    #618030

    It does not work Andy, otherwise I did not tried to help you posting quick css.

    Even on screen > than iPad the secondary logo is partially cut.

    thank you

    #619789

    Hi!

    try this code in Quick CSS for iPad:

    @media only screen and (max-width: 1024px) {
    #header_meta .container {
    left: -94px;
    }}
    

    Cheers!
    Andy

    #619805

    one question before Andy, please: should I erase all the code below in quick css before adding yours:

    @media only screen and (max-width: 1500px) {
    #header_meta .container:before { right: 0; }}
    
    @media only screen and (max-width: 1500px) {
    .responsive #header_main .container {
        max-width: 80%;
    }
    }
    #620411

    Hi,

    Not 100% sure but if you try to cut the code you posted and check the site afterwards you would be able to determine if it affects something or not, if it does then you can keep it as it is.

    Regards,
    Rikard

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