Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #50057
    luismarioochoa
    Participant

    Can you please show me how to insert an image logo into the Site Title & Tagline area in the Customize section of the Theme. I am
    Trying to insert it below the header image of this site. BonVivantTravel.ca
    Thank you

    Luis

    #50077
    Sakin
    Keymaster

    @luismarioochoa: Actually the image that you have added is the place for logo in Catch Box theme. That is why it has div id ‘site-logo’. So, you want to add another image as well. For that you need to build child theme. For child theme you can read http://catchthemes.com/blog/create-child-theme-wordpress/ and also download sample child theme from there. Then you can add the following function in your child theme and edit it as per your need.

    function catchbox_headerdetails() { ?>
    	
    	<div class="logo-wrap clearfix">
    		<?php echo catchbox_header_image(); ?>
    
    		<!-- Add New Image -->
    		<img src="Add your image url" alt="Add your image alt text" />
    
    		<?php echo catchbox_header_details(); ?>
    	
    	</div><!-- .logo-wrap -->
    <?php
    } 
    #50096
    luismarioochoa
    Participant

    Hi Sakim, Thank you for your quick response as always.
    I am trying the free versions of your Catch Themes as I am not sure which one of your pro themes will work best for the website i am working on and I WILL purchase one eventually as i have done previously. Will I have to create a Child Theme even with the pro version? If yes, how will that work when updating?

    #50097
    luismarioochoa
    Participant

    By the way, I created a Child Theme, and inserted the code you provided, but it did not work

    #50103
    Sakin
    Keymaster

    @luismarioochoa: There is no option to add logo bellow the header image. It’s a different logic. That is why I showed you option to build child theme and code for your child them. Can you show me what you have added. Can you paste your child theme functions.php and style.css in https://gist.github.com/ and post the link here.

    In the above code for your child theme functions.php, did you change the image URL and alt text. Yes, Child theme will work in Pro version as well. Just that you need to change a little bit. You see all samples in http://catchthemes.com/blog/create-child-theme-wordpress/

    #50108
    luismarioochoa
    Participant

    OK I went with a different solution. Now I need help with:

    1. Eliminate the tagline space between the Navigation Menu below and the Header Image above.

    2. I need to match the black around the heather image #222222, widget #111111 and the content space to the black on the logo below that is now part of the Header image.

    3. I need to remove the navigational arrows from the theme slider.

    4. Need to evenly spread the menu tabs.

    I found with my previous Child themes of Catch, that I had to remove both the parent and child when updating, other wise the updated theme would not load.

    Can you please help?

    Thank you!

    #50132
    Sakin
    Keymaster

    @luismarioochoa:
    1. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #header-content { padding-bottom: 0; }

    2. I am confused to this. You can upgrade to pro version to get full color option and change the color as per your need. If you want to match your header image black color with the header background then you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #branding { background-color: #202020; }

    3. You can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #content nav#nav-slider { display: none; }

    4. In responsive design, it’s not possible to make that.

    #50135
    luismarioochoa
    Participant

    Thank you Sakin,

    I need to purchase the Theme under a different company. Do I have to open a different account for this? I still need to be able to update it myself and I some point relinquish responsibility to the owners. Please advice.

    PS. Still I have to manage the Widget Text Color in the CSS, you promised last year would correct this but a few updates later issue is still there. Please advice. Thanks

    Luis

    #50146
    Sakin
    Keymaster

    Hi Luis,

    I am not that good with sales stuff. So, you can contact our sales directly at http://catchthemes.com/contact-us/. As per my guess, yes it’s better to open new account in that company name and purchase it. As if the company claims later on then we need to transfer anyhow. But I don’t have any issue with your account purchasing for different company.

    Sorry, I don’t remember which widget text color are you talking about. In Catch Box Pro, we have “Sidebar Widget Title Color, Sidebar Widget Text Color”.

    Regards,
    Sakin

    #50218
    Franca
    Member

    Hi Sakim,

    Client just purchased Catch Box. I had created a Child Theme from the free version so everthing was stored there. When I deleted the Parent Free to installed the Pro, the Child was rendered useless, everything I had worked on the child was gone, so I had to re-start again.

    In the Child Free Catch I had the Search Box floating on the top right side of the header image, but now it is gone. Please can you help me with that? http://www.bonvivanttravel.ca

    For the Widget to change color, I still have to enter this in CSS .widget {background-color: #111111;} instead of working from the color options.

    Thanks

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Inserting logo in the site title and tag line area’ is closed to new replies.