badget

Biggest Sale! Special Offer!

Get 50% discount on all of our single themes with this coupon code: #50%SALE

Hurry up! *Limited time offer*

Theme Horse Support Team

Forum Replies Created

Viewing 15 posts - 2,506 through 2,520 (of 5,207 total)
  • Author
    Posts
  • in reply to: sidebar layout #26591

    Hi sktalpos,

    i just visited to your site and its all fine there. Did you view your website from tablet or any smaller device. If yes then this is not an issue. This is responsive layout. We have designed our theme this way.

    View this below screenshot.
    http://awesomescreenshot.com/0c8533tu99

    Thank you!

    in reply to: Themehorse Services Widget Icons- Rollover Colour #26590

    Hi Dean,

    This feature is not available in our theme. It needs code customization and you need to hire a developer to fix it.
    To add link in service icon go to the theme folder -> inc ->widgets -> interface_widgets.php. Can you see this code on line no 329 to 333

    <?php 
     if ( has_post_thumbnail() ) {
     	echo'<div class="service-icon">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</div>';						}
    ?>

    Replace above code with this below code

    <?php 
     						if ( has_post_thumbnail() ) {
     							echo'<div class="service-icon"><a href="'.get_permalink() .'">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</a></div>';
     						}
     						?>
    

    Now you can have a link in services icon. Just make a custom service widgets as i have told before in your child theme to avoid you customized code lost.

    Thank you!

    in reply to: Service Icon Links #26589

    Hi Dean,

    This feature is not available in our theme. It needs code customization and you need to hire a developer to fix it.
    To add link in service icon go to the theme folder -> inc ->widgets -> interface_widgets.php. Can you see this code on line no 329 to 333

    <?php 
     if ( has_post_thumbnail() ) {
     	echo'<div class="service-icon">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</div>';						}
    ?>

    Replace above code with this below code

    <?php 
     						if ( has_post_thumbnail() ) {
     							echo'<div class="service-icon"><a href="'.get_permalink() .'">'.get_the_post_thumbnail( $post->ID, 'icon' ).'</a></div>';
     						}
     						?>
    

    Now you can have a link in services icon. Just make a custom service widgets as i have told before in your child theme to avoid you customized code lost.

    Thank you!

    in reply to: Changing the words Navigation on mobile theme version #26559

    You Welcome Bel

    Thank you!

    in reply to: sidebar layout #26558

    Hi sktalpos,

    Could you provide your site Url too? So that we can help you to fix it.

    Thank you!

    in reply to: CSS Help Needed #26556

    Hi myhelium,

    Go to Appearance -> Customize -> Ambition theme options -> Custom CSS paste the below CSS code and Click on Save & Publish button at the top of the options panel.

    .featured-text {
      background-color: rgba(196, 153, 249, 0.52);
    }

    Thank you for using our theme.

    in reply to: Make a Div background full-width #26553

    Hi miri,
    Which div background section you are talking about? If you are talking about the Customize -> Colors -> Background Color then this background color will only takes effect when you site is narrow layout.

    You can set your site to narrow layout. Go to Appearance -> Customize -> Ambition theme options -> Site layout and select Narrow Layout. By default it is wide layout and Click on Save & Publish button at the top of the options panel.

    Thank you!

    in reply to: Get rid of Search bar and Page title #26552

    Hi miri,

    Could you make it more clear which page title you want to hide? It would be better if you provide your site Url too.

    If you want to hide search form then Go to Appearance -> Customize -> Ambition theme options -> Header Options and check to disable search form.Click on Save & Publish button at the top of the options panel.

    Thank you!

    in reply to: Categories and font color #26551

    Hi graceblake,
    Go to Appearance -> Customize -> Ambition theme options -> Custom CSS paste the below CSS code and Click on Save & Publish button at the top of the options panel.

    .entry-meta .cat-links, 
    .entry-meta .cat-links a 
    {
     display:none;
    }
    
    .featured-text {
    color: #fff; 
    }

    Note: Please change above HEX color code #fff to your own HEX color code to change the color of featured font color.

    Also, If you upgrade the theme to pro version then you can set the color skin of each section with your own color also with lots of features.
    Pro version will be available very soon.

    Thank you for using our theme.

    in reply to: Slide in full page #26544

    That’s great frederic.mary

    Thank you!

    in reply to: social media posting #26543

    Hi graceblake,

    We don’t have this feature available in our theme. You may try other third party plugins and use the shortcodes on post content to display social media.
    Try this plugins
    https://wordpress.org/plugins/ultimate-social-media-icons/

    Thank you!

    in reply to: Using Jetpack carousel gallery #26542

    Hi Bel,

    If this is CSS conflict then you need to remove the CSS from styles.css file. We have designed our theme this way and not even checked with jetpack plugins. You may create a child theme and the customize the CSS. Making child theme will over ride the parent theme styles. If you are unable to fix it then you need to hire a developer to fix it.

    Thank you!

    in reply to: Slide in full page #26511

    Hi frederic.mary,

    If you choose any tag then the tag will be displayed in the slider. If there is no tag match then sticky post will be displayed instead.

    You mean that you don’t wanna add slider ? Then go to dashboard -> apperance -> customize -> ambition theme options -> featured content settings and click on check to disable slider.

    Thank you!

    in reply to: Supports WPML & WooCommerce? #26510

    Hi sveinnosigurdsson,

    We have designed our theme this way. This free version of theme does not supports woocomerce and wpml. This feature will be only available in Pro version which is going to release very soon.

    Thank you!

    in reply to: Changing the words Navigation on mobile theme version #26509

    Hi Bel,

    This feature is not available in our theme. It needs code customization. If you really wanna change the code then the file is inside theme folder (attitude )-> library -> structure -> functions -> functions.php on line no 247 to 259 you will see this below code
    /**************************************************************************************/

    add_filter( 'wp_nav_menu_items', 'attitude_nav_menu_alter', 10, 2 );
    /**
    * Add default navigation menu to nav menu
    * Used while viewing on smaller screen
    */
    if ( !function_exists('attitude_nav_menu_alter') ) {
    	function attitude_nav_menu_alter( $items, $args ) {
    		$items .= '<li class="default-menu"><a href="'.esc_url( home_url() ).'" title="Navigation">'.__( 'Navigation','attitude' ).'</a></li>';
    		return $items;
    	}
    }

    Replace above code with is below code

    /**************************************************************************************/
    
    add_filter( 'wp_nav_menu_items', 'attitude_nav_menu_alter', 10, 2 );
    /**
    * Add default navigation menu to nav menu
    * Used while viewing on smaller screen
    */
    if ( !function_exists('attitude_nav_menu_alter') ) {
    	function attitude_nav_menu_alter( $items, $args ) {
    		$items .= '<li class="default-menu"><a href="'.esc_url( home_url() ).'" title="Menu">'.__( 'Menu','attitude' ).'</a></li>';
    		return $items;
    	}
    }
    

    Remember one thing that each and every time you update to new version then the same things you need to do again and again. So better make a child theme and then customize the code so that your data will not be lost while updating to new version.

    Thank you!

Viewing 15 posts - 2,506 through 2,520 (of 5,207 total)