Viewing 30 posts - 1 through 30 (of 33 total)
  • Author
    Posts
  • #424544

    Hi,

    I was wondering if it is possible for me to add some extra (clickable) logo’s in the Header space. I made a screenshot of what I mean.

    Thanks in advance.

    Regards,

    Erik

    #424665

    Hi erikvermeulen!

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

    Best regards,
    Yigit

    #424672
    This reply has been marked as private.
    #424921

    Hey!

    Try this CSS instead if you want it centered.

    strong.second-logo {
      float: left;
      left: 50%;
      margin-right: auto;
      position: relative;
      transform: translate(-50%);
    }

    Cheers!
    Elliott

    #424925

    That is not what I meant. That centers it horizontaly. But I want it on the right side, but centered verticly. It needs to line up with the logo on the left and the social media icons. Is there a way to do this?

    #425118

    Hey!

    Please try adding this to Quick CSS under Enfold–>General Styling:

    .second-logo img{
    padding-top:40px;
    }

    Cheers!
    Rikard

    #425171

    Hi thanks for the reply. It sort of worked, but i changed the image to a smaller logo and now it doesn’t line up again. Is there a way to always make an image, no matter the size, centered (vertically) in my header? Our own Logo is always centered so I assume there is a way.

    Also when I scroll down, the menu bar shrinks. The NRTO logo then also shrinks (which is good) but it loses it’s positioned and gets stuck on the bottom border of the menu. It doesn’t look great. Is there a way to remedy this?

    #425217

    Hi!

    Please adjust the code Rikard posted to center it perfectly. Then add following code to Quick CSS

    .header-scrolled .second-logo img {
      padding-top: 10px;
    }

    Best regards,
    Yigit

    #425291

    Ok thanks so much. I hope I’m not being to much trouble. I do have a follow-up question now about this.

    The logo is now positioned as I want it. But I would like to logo to be a hyperlink to an externet webadres. Is this possible?

    #425295

    Hey!

    Please edit your code and add your link using HTML A tag. If you need help, please create a temporary admin login and post the link you would like to use

    Cheers!
    Yigit

    #427387
    This reply has been marked as private.
    #428122

    Hi!

    Yes, that is possible. You can add it directly to the includes > helper-main-menu.php fileor add this to the functions.php file:

    add_action('ava_main_header', 'ava_main_header_mod');
    function ava_main_header_mod() {
    	$output  = '<div class="header-message">';
    	$output .= '<span class="blue bold">Vrijdag 17 april Open Dag!</span> <br>';
    	$output .= '<a href="http://www.intercollege.nl/contact/afspraak-maken/" class="orange bold">Meld je nu aan!</a>';
    	$output .= '</div>';
    	echo $output;
    }

    Regards,
    Ismael

    #428133
    This reply has been marked as private.
    #428338

    Hey!

    I cannot see the text on your page right now. Please add it once again and change its position by adding following code to Quick CSS

    .header-message { position: relative; top: 10px; left: 10%; }
    .header-message * { font-weight: bold !important; }

    Cheers!
    Yigit

    #428766
    This reply has been marked as private.
    #428798

    Hi!

    Please add following code to Quick CSS as well

    .header-message {
      margin-top: -44px;
    }
    .header-scrolled .header-message {
      top: 70px;
    }

    Regards,
    Yigit

    #428841
    This reply has been marked as private.
    #428843

    Hi!

    Please add following code to Quick CSS as well

    .header-message { z-index: 99; }

    Regards,
    Yigit

    #428849
    This reply has been marked as private.
    #428859

    Hi!

    Changes you made in Quick CSS field are safe but the ones in functions.php file will be overwritten. You can download pre-built child theme from here – http://kriesi.at/documentation/enfold/downloads/

    Best regards,
    Yigit

    #428862
    This reply has been marked as private.
    #429456

    Hey!

    You will not lose any settings when you move to a child theme. Refer to this link: http://kriesi.at/documentation/enfold/using-a-child-theme/

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Regards,
    Ismael

    #429462
    This reply has been marked as private.
    #429666

    Hi!

    Please change following code

    .header-message {
      position: relative;
      top: 105px;
      left: 30%;
    }

    to following one

    .header-message {
      position: relative;
      top: 85px;
      left: 30%;
    }
    @media only screen and (max-width: 769px) {
    .header-message {
      left: 40%;
    }}
    @media only screen and (max-width: 480px) {
    .header-message {
      top: 190px;
      left: 13%;
    }}

    Regards,
    Yigit

    #431209
    This reply has been marked as private.
    #432111

    Hey!

    I have found many links in this thread … can you please post one to the website in question? Please also provide us screenshots showing what you want to achieve, so we can give you some precise CSS code.

    Best regards,
    Andy

    #432647
    This reply has been marked as private.
    #432869

    Hi Erik!

    Do you mind creating a temporary admin login and posting it here privately?

    Cheers!
    Yigit

    #432882
    This reply has been marked as private.
    #433624

    Hi!

    Please review your website now.
    I had to remove extra information on screens smaller than 768px, because simply header is not enough for 2 logos 1 extra information and social icons.

    Cheers!
    Yigit

Viewing 30 posts - 1 through 30 (of 33 total)
  • The topic ‘Add extra logo's in header space’ is closed to new replies.