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 - 3,091 through 3,105 (of 5,207 total)
  • Author
    Posts
  • Hi Daniel,

    We are sorry for this. This feature is not available in our theme. It needs code customization. So you need to hire a developer to fix it.

    Thank you!

    in reply to: Company Logo In Header #22673

    Hi Lanai,

    While uploading image you can set the image (full size) where our theme horse logo size is ( 350 * 80 ). You may use any size of image that will be suitable for your logo.

    http://awesomescreenshot.com/0324aucc1b

    Thank you!

    in reply to: Link to page #22672

    Hi jcarlos.cortes,

    Just add your code in this way
    Copyright &copy; [the-year] [site-link] <a href="https://www.distromel.com/proteccion-de-datos-link" title="Distromel"> https://www.distromel.com/proteccion-de-datos-link</a>
    Hope this may help you!

    Thank you!

    in reply to: Background image (parallax effect) #22671

    Hi filipa.martins,

    iF you want to add the background image on the next inner page then go to dashboard-> appearance-> theme options-> advance options-> page title background image and change the image for inner page. If you change image here then it will affect to your inner page.

    Thank you!

    in reply to: slider doesn´t work in all browser #22638

    Hi privat,

    Did you customize any code? Because its working fine in our demo site so it also must work fine in your site too. If you have not made any theme customization then first of all deactivate all the plugins one by one and check it whether the same problem persuits or not.

    Thank you!

    in reply to: Full header logo #22637

    Hi Urs,

    1st: is it possible to remove that little space at the top via custom css?
    ==> Which space do you want to remove? Could you make it more clear and also provide site url too.

    2nd: is it possible to make the full header logo clickable an linked to the main startpage?
    ==> yes you can but you have to customize the code. The file is inside theme folder(attitude-pro)-> library-> structure-> header-extension.php on line no 205 and you will find this below code.

    <?php $header_image = get_header_image();
    			if( !empty( $header_image ) ) :?>
    				<img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>">
    			<?php endif; ?>	

    and remove this above code with this below code
    <?php $header_image = get_header_image();

    			if( !empty( $header_image ) ) :?>
    				<a href="<?php echo esc_url( home_url( '/' ) ); ?>"><img src="<?php echo esc_url( $header_image ); ?>" class="header-image" width="<?php echo get_custom_header()->width; ?>" height="<?php echo get_custom_header()->height; ?>" alt="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"> </a>
    			<?php endif; ?>	

    Before making any changes in the code first create a child theme to be safe from you customized code loss while updating to our new version.

    Thank you!

    in reply to: Recent posts / Categories #22636

    Hi t.o.m.a.s.t,

    We have designed our theme this way. This feature is not available in our theme. It needs code customization. So you need to hire a developer to fix it.

    Thank you!

    in reply to: Default page has missing green bar! #22635

    Hi davidmarryatt,

    Could you once send your site url too? Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    .archive .page-title-wrap { display: none; }
    Hope this may help you!

    Thank you!

    in reply to: Shortcode for buttons #22634

    Hi emilie.ringwald,

    Which button are you talking about? We don’t use any shortcode to create a button in our theme.

    Thank you!

    in reply to: Add video in Theme Horse Services Widget #22633

    Hi alokranjan39,

    We have extracted the text from excerpt. So it is not displaying. We have designed our theme this way. If you want to use view in the service widgets then it needs code customization. So you need to hire a developer to fix it.

    Thank you!

    in reply to: Remove links from head slider image #22632

    Hi julie.pett,

    You need code customisation for it. You just simply go to the theme folder(interface)-> inc -> structure -> header -extension.php

    Can you see this code

    if( has_post_thumbnail() ) {
    	
    							$interface_featured_post_slider .= '<figure><a href="' . get_permalink() . '" title="'.the_title('','',false).'">';
    	
    							$interface_featured_post_slider .= get_the_post_thumbnail( $post->ID, $slider_size, array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class'	=> 'pngfix' ) ).'</a></figure>';
    						}
    						if( $title_attribute != '' || $excerpt !='' ) {
    						$interface_featured_post_slider .= '
    							<article class="featured-text">';
    							if( $title_attribute !='' ) {
    									$interface_featured_post_slider .= '<div class="featured-title"><a href="' . get_permalink() . '" title="'.the_title('','',false).'">'. get_the_title() . '</a></div><!-- .featured-title -->';
    							}
    							if( $excerpt !='' ) {								
    								$interface_featured_post_slider .= '<div class="featured-content">'.$excerpt.'</div><!-- .featured-content -->';
    							}
    						$interface_featured_post_slider .= '
    							</article><!-- .featured-text -->';
    						}

    remove this code and add this code

    if( has_post_thumbnail() ) {
    	
    							$interface_featured_post_slider .= '<figure><a href="#" title="'.the_title('','',false).'">';
    	
    							$attitude_featured_post_slider .= get_the_post_thumbnail( $post->ID, $slider_size, array( 'title' => esc_attr( $title_attribute ), 'alt' => esc_attr( $title_attribute ), 'class'	=> 'pngfix' ) ).'</a></figure>';
    						}
    						if( $title_attribute != '' || $excerpt !='' ) {
    						$interface_featured_post_slider .= '
    							<article class="featured-text">';
    							if( $title_attribute !='' ) {
    									$interface_featured_post_slider .= '<div class="featured-title"><a href="#" title="'.the_title('','',false).'">'. get_the_title() . '</a></div><!-- .featured-title -->';
    							}
    							if( $excerpt !='' ) {								
    								$interface_featured_post_slider .= '<div class="featured-content">'.$excerpt.'</div><!-- .featured-content -->';
    							}
    						$interface_featured_post_slider .= '
    							</article><!-- .featured-text -->';
    						}

    From here you slider and all content is displayed but We recommended not to change the code because if you change the code then while updating to our new version all your customisation code will be lost. So better make child theme and first unhook the functions and the edit the code.

    http://codex.wordpress.org/Child_Themes

    Thank you!

    in reply to: How do I change Fonts and Font sizes ?? #22631

    hi Lisa Simone,
    Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:

    .page-title {
    font-size: 24px;
    }
    

    Do not select the font size of Page Title. Leave it to default 32px

    Thank you!

    in reply to: multi-language front page and widget text #22562

    Hi nosprogressus,

    We have not even tested our site in multi-language. So we are not sure that it works or not. So you may need code customisation and need to hire a developer to fix it.

    Thank you!

    in reply to: move menu above header #22561

    Hi astrid,

    We have designed our theme this way. It needs code customization. The file is inside theme folder-> library-> structure-> header-extension.php, Before making any changes in the code its highly recommended to make a child theme then only customize the code. So that your content will not be loss while updating to our new version.

    Thank you!

    in reply to: Move Man Navigation above the Header. #22560

    Hi Daniel,

    The header will display above it navigation menu not below it. If you want below the navigation then it needs code customization. The file is inside theme folder-> inc-> structure-> header-extension.php, Before making any changes in the theme first make a child theme and customize the code. So that your data/ content will not be loss while updating to our new version.

    Thank you!

Viewing 15 posts - 3,091 through 3,105 (of 5,207 total)