Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #113611
    rifatgunduz
    Participant

    Hi,
    How i can add second logo in my site? Second logo place: Under Search bar

    Site: abakusbilisim.com

    I added “echo ‘<div class=”header-addition”></div>’;” after “do_action( ‘catchresponsive_header’ );”
    Added but not what I wanted.


    Thanks.

    #113628
    Mahesh
    Participant

    @rifatgunduz: Header Right widget area is available in Catch Responsive Pro, which will allow you to add text, image, html or some widget to the header right section. So I recommend you to upgrade to Pro.
    But if you wish to have it the way you’ve done, go to Dashboard=> Appearance=> Customize=> Additional CSS box and add the following CSS:

    @media screen and (min-width: 991px) {
    	#page {
    		position: relative;
    	}
    
    	.header-addition {
    		position: absolute;
    		top: 100px;
    		right: 0px;
    	}
    }
    
    @media screen and (max-width: 990px) {
    	.header-addition {
    		text-align: center;	
    	}
    }

    Regards,
    Mahesh

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Add Second Logo in Header’ is closed to new replies.