I had the free version and it worked fine. The purchased version will allow me to update the title and tagline, but when you save it, nothing updates on the site. ButterBelly info stays locked.
Hello, I think you are expecting title and tagline at the place where currently logo is. If yes then open "header.php" file and replace code shown in the image with the code given below. Code: <div class="logo"> <?php if (inkthemes_get_option('inkthemes_logo') != '') { ?> <a href="<?php echo home_url(); ?>"><img src="<?php echo inkthemes_get_option('inkthemes_logo'); ?>" alt="<?php bloginfo('name'); ?> logo"/></a> <?php } else { ?> <hgroup> <h1 class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1> <h4 class="site-description"><?php bloginfo('description'); ?></h4> </hgroup> <?php } ?> </div> Thanks & Regards Nitesh Raghuwanshi
That changed it, but now my contact info is not on the bottom anymore. Did I delete and replace to much? <div class="logo"> <?php if (inkthemes_get_option('inkthemes_logo') != '') { ?> <a href="<?php echo home_url(); ?>"><img src="<?php echo inkthemes_get_option('inkthemes_logo'); ?>" alt="<?php bloginfo('name'); ?> logo"/></a> <?php } else { ?> <hgroup> <h1 class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" title="<?php echo esc_attr(get_bloginfo('name', 'display')); ?>" rel="home"><?php bloginfo('name'); ?></a></h1> <h4 class="site-description"><?php bloginfo('description'); ?></h4> </hgroup> <?php } ?> </div> </div>
I fixed part of it, but how do I get rid of the empty box at the bottom of the screen. www.hishands.org
Hello, We have check you site link but it is not working right now. Could you please resend us your correct site link.
http://www.hishands.net http://www.hishands.org There is an empty tabs box at the bottom of the screen I do not want to use and there does not seem to be a way to disable it.
Hello, Paste the code given below in Custom CSS section (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard. Code: .feature_mid_content{ display: none; } This will solve your issue.