Codeless
  • Support Home
  • Themes
  • Support
  • WordPress Tutorials
    • How to Start a Blog
    • Best Website Builders
    • Best Small Business Hosting
    • Email Marketing Services
    • Cheap WordPress Hosting
  • Video Tutorials

Community Forums

  • Profile
  • Topics Started
  • Replies Created
  • Favorites

Forum Replies Created

  • 9 years, 9 months ago Kris
    Participant
    in reply to: Business 4

    Hello,

    That happened because you have chosen the Default Demo when you imported demo data, so all pages and content will display the default version. You will have to choose the Business 4 demo to import its data, but the import will overwrite all existing option values and it may cause the duplicating of some content (like pages, menus). You must empty your database and install it again.

    Or you can just import the theme options. Go to Import/Export dummy data, select only ‘theme options’ from the dropdown and select the business 4 demo. Then import it.
    Let us know.

    Best regards!

    • This reply was modified 9 years, 9 months ago by Ruco.
    9 years, 9 months ago Kris
    Participant
    in reply to: Previous/next blog button

    Hello,

    Glad to know you resolved it. Thank you for letting us know.
    Best regards!

    9 years, 9 months ago Kris
    Participant
    in reply to: while template activation parse error is coming

    Hello,

    1. The top widgetized area contains the Tower Social Widget, which you can edit on > Apperance > Widgets > Header Widgetized Area (https://www.clipular.com/c/5239448618401792.png?k=kIW1ZI49dZvV7sA4pw5xaf07HCo). Here you can edit text and choose the social media icons style.
    2. To edit menus go to > Apperance > Menus. (https://www.clipular.com/c/5972156416000000.png?k=bv7mikpdDL3M7lRPrRzxeDlrhxE) You can add dropdown menus like shown on the screenshot. You can also choose the menu and dropdown menu style on Tower Header Options > Menu Options and Dropdown Options.
    3. Go to Revolution Slider, choose the slider you want to edit and customize it as you like (https://www.awesomescreenshot.com/image/1463760/4e450ff16231fc9f77db4974acacd639)
    NOTE: First make sure you have read all the tower documentation and watched the video tutorials. You can always refer to them when customizing the theme. Ask us for options and you can’t find on theme documentation and issues that are not included on Knowledge Base.
    Let us know.

    Best regards!

    9 years, 9 months ago Kris
    Participant
    in reply to: White bar below header

    Hello,

    The space seem to came from revolution slider, on window resize.
    You have a very old version of revolution slider and theme.
    Please update theme to the new version. A lot has changes in revslider since then.

    Best regards!

    • This reply was modified 9 years, 9 months ago by Ruco.
    9 years, 9 months ago Kris
    Participant
    in reply to: Client section

    Hello,

    To make the arrows always visible, add this line to your custom CSS box:

     .clients_el .pagination a
    {opacity: 1;
    }

    To make the clients logo unclickable, go to your theme files –> \wp-content\themes\specular\vc_templates and open clients.php.
    Find these lines:

    $output .= '<a href="'.esc_url($client['url']).'" title="'.esc_attr($client['title']).'">';
     $output .= wp_get_attachment_image( $client['attachment_id'], 'full' );
     $output .= '</a>';

    and replace with this:
    $output .= wp_get_attachment_image( $client['attachment_id'], 'full' );

    Let us know.

    Best regards!

    • This reply was modified 9 years, 9 months ago by Mirela.
    9 years, 10 months ago Kris
    Participant
    in reply to: Add element fail

    Hello,

    Have you updated theme and visual composer to its latest version? What version of visual composer do you have?
    Please send us your credential in a private reply to take a closer look.
    Best regards!

    9 years, 10 months ago Kris
    Participant
    in reply to: while template activation parse error is coming

    Hello,
    Can you be more specific at what you want?
    Do you mean how to edit the text content element?
    You can edit the elements on the backend editor using visual composer. I logged in to your site and the visual composer worked fine.
    Let us know.
    Best regards!

    9 years, 10 months ago Kris
    Participant
    in reply to: Meanu font color

    Hello,

    I removed the white space above the footer, please check your site.
    I just decreased the Inner Page Content Padding to 0 px, on theme options > Layout.
    Let us know.
    Best regards!

    9 years, 10 months ago Kris
    Participant
    in reply to: responsive issues with the "Recent Portfolio" boxes

    Hello,

    You have a very old version of theme. Please update tower theme to its latest version 1.8.1. We have made many improvements since the 1.4 version, also the latest theme version is compatible with the latest WP version.
    Let us know if the issue persist even after theme update.

    Best regards!

    • This reply was modified 9 years, 10 months ago by Ruco.
    9 years, 10 months ago Kris
    Participant
    in reply to: Menu Turns White with Slider

    Hello,

    Go to codeless slider, edit slider, Layout and select ‘dark menu and logo for light background’ option.

    Best regards!

    • This reply was modified 9 years, 10 months ago by Ruco.
    9 years, 10 months ago Kris
    Participant
    in reply to: Logo not displaying properly on mobile

    Hello,
    Please add !important to the height attribute:

    @media (max-width: 480px){
    #logo img {
        height: 83px !important;
        margin-top: -36px;
    }
    }
    

    This is what i get when i add this code: (https://www.awesomescreenshot.com/image/1452120/9c4ab9ab98238716e1efdc140497c97b)
    Let us know.
    Best regards!

    9 years, 10 months ago Kris
    Participant
    in reply to: Any way to auto scroll client logos?

    Hello,
    Yes, you can auto scroll the clients logo (clients carousel).
    Please go to your theme files–>wp-content\themes\specular\js and open main.js.
    Find these lines:

    function clientsCarousel(){
    	"use strict";
    
    	var $self = $('.clients_caro');
    	if($self.length){
    		$self.css('display', 'none');
    		$self.imagesLoaded(function(){
    			$self.css('display', 'block');
    			$self.carouFredSel( 
    			{
    						items:4,
    						auto: false, 
    						scroll: { items : 1 },
    						prev : {
    							button : $self.parents('.clients_el').first().find('.prev')
    						},
    
    						next : {
    							button : $self.parents('.clients_el').first().find('.next')
    						}
    			});
    		})
    	}
    	
    	}

    and replace with these:

    function clientsCarousel(){
    	"use strict";
    
    	var $self = $('.clients_caro');
    	if($self.length){
    		$self.css('display', 'none');
    		$self.imagesLoaded(function(){
    			$self.css('display', 'block');
    			$self.carouFredSel( 
    			{
    						items:4,
    						auto: true, 
    						scroll: { items : 1 },
    						prev : {
    							button : $self.parents('.clients_el').first().find('.prev')
    						},
    
    						next : {
    							button : $self.parents('.clients_el').first().find('.next')
    						}
    			});
    		})
    	}
    	
    	
    
    }

    Let us know.
    Best regards!

    9 years, 10 months ago Kris
    Participant
    in reply to: Images Disappearing on Mobile

    Hello,
    Glad to hear that. Thank you for letting us know.
    Best regards!

    9 years, 10 months ago Kris
    Participant
    in reply to: Yoast SEO not working with Tower theme

    Hello,
    Sorry! We are working forward to resolve this issue and make the latest version of yoast SEO plugin fully compatible with our theme.
    We will update you as soon as possible.
    Best regards!

    9 years, 10 months ago Kris
    Participant
    in reply to: Responsive Issues: Header, Menu, Search

    Hello,
    3. This is the view i get on Iphone 4/4s:
    (https://www.awesomescreenshot.com/image/1451713/e4346f06695aec823ebd116ba998cdb4).
    Did you manage to fix it?
    4. The code that our colleague gave you, was the full code to display the search on responsive menu, i think we didn’t understand very well what you were trying to say. But we understand now, and we will consider that in our future updates. Thank you for the suggestion.
    Let us know.
    Best regards!

Viewing 15 posts - 316 through 330 (of 427 total)
← 1 2 3 … 21 22 23 … 27 28 29 →

Site Links

  • Support Policy
  • Specular Support Forum
  • Video Tutorials
  • Knowledge Base
  • Guides and Reviews

Useful Articles

  • Build a Website
  • Web Design & Development
  • Hosting
  • WordPress

Login

Log In
Register Lost Password