Forum Replies Created

Viewing 30 posts - 1,921 through 1,950 (of 11,542 total)
  • Avatar: Robert Hall
    Robert Hall
    Participant
    May 17, 2016 at 08:30

    I’ve also copied font-awesome.css file to css folder.
    Please check it now.

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 17, 2016 at 08:15

    Hello,

    You’re welcome!

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 17, 2016 at 08:14

    No, only fonts folder.

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 17, 2016 at 07:45

    Hello,

    The tabs element is outdated element (http://prntscr.com/b4zv2g). You should recreate them with new one and all other content on page will be shown.

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 17, 2016 at 07:38

    Hello,

    Please copy the \wp-content\themes\legenda\css\fonts folder into the Child Theme folder saving same structure. For example, \wp-content\themes\legenda-child\css\fonts

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 17, 2016 at 07:35

    Hello,

    Please use this code in style.css of Child Theme.

    .toggle-element .open-this{
    color:red !important;
    }
    .toggle-element .toggle-content {
        color: red;
    }

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 17, 2016 at 07:27

    Hello,

    You’re using old Visual Composer plugin version. Please update and check issue.

    You can download the latest plugins versions at this link https://www.8theme.com/download-plugins/ ,
    enter your purchase code of the theme to get the plugins.

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 17, 2016 at 07:21

    Hello,

    Please clarify what icon you want use there?

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 16:00

    Hello,

    You can change it in the wp-content\themes\legenda\woocommerce\cart\cart-empty.php file.

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 13:36

    Hello,

    Try to add menu-column2 class for that menu.

    Read more in our documentation:
    https://www.8theme.com/demo/docs/woopress/index.html#!/primary_menu

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 12:46

    Hello,

    1) In this case you should change the Row Strech to Strech row and content (no padding) in Row Settings. See screensgot: http://prntscr.com/b4noxx

    2) Please use this code in custom.css

    .toggle-element .toggle-content {
        font-size: 20px;
    }

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 12:12

    Sorry, but it’s very hard to help you without link to the page.
    You should upload site to some hosting then we can help you with code.

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 12:08

    You’re welcome!

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 11:25

    Hello,

    Please provide us with wp-admin and FTP credentials in Private Content.

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 11:07

    Hello,

    Please add this code in 8theme Options->Styling->Custom CSS->Custom CSS for tablet, Custom CSS for mobile landscape and Custom CSS for mobile.

    .products-grid .product {
        width: 100%;
    }

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 10:55

    Hello,

    1) Please try to add this code in Global Custom CSS.

    .main-footer {
        background: #C11 !important;
    }

    2) In this case set the value ‘1’ for socials icons which should be used.

    extract(shortcode_atts(array(
    		'title'  => '',
    		'text' => '',
    		'tooltip' => 0,
    	        'twitter' => 1,
    	        'linkedin' => 1,
    	        'facebook' => 1,
    	        'pinterest' => 0,
    	        'google' => 0,
    	        'mail' => 0,
    		'class' => ''
    ), $atts));

    and add the following code before if($twitter == 1).

    if($linkedin == 1) {
    $html .= '<li><a href="your link here"><i class="ico-linkedin"></i><svg width="38" height="38" xmlns="http://www.w3.org/2000/svg" class="circle"><circle cx="19" cy="19" r="18" fill="#fff" stroke="#000000"></circle></svg></a></li>';
    }

    Please see screenshot how it should be: http://prntscr.com/b4mhyg

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 10:33

    Hello,

    Please try to add this code in Global Custom CSS.

    .slide-item .product {
        height: 300px;
    }

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 10:27

    Hello,

    Please try to add this function into the function.php file of Child Theme and make change there.

    function et_create_brand_taxonomies() {
    		$labels = array(
    			'name'              => _x( 'Brands', ETHEME_DOMAIN ),
    			'singular_name'     => _x( 'Brand', ETHEME_DOMAIN ),
    			'search_items'      => __( 'Search Brands', ETHEME_DOMAIN ),
    			'all_items'         => __( 'All Brands', ETHEME_DOMAIN ),
    			'parent_item'       => __( 'Parent Brand', ETHEME_DOMAIN ),
    			'parent_item_colon' => __( 'Parent Brand:', ETHEME_DOMAIN ),
    			'edit_item'         => __( 'Edit Brand', ETHEME_DOMAIN ),
    			'update_item'       => __( 'Update Brand', ETHEME_DOMAIN ),
    			'add_new_item'      => __( 'Add New Brand', ETHEME_DOMAIN ),
    			'new_item_name'     => __( 'New Brand Name', ETHEME_DOMAIN ),
    			'menu_name'         => __( 'Brands', ETHEME_DOMAIN ),
    		);
    
    		$args = array(
    			'hierarchical'      => true,
    			'labels'            => $labels,
    			'show_ui'           => true,
    			'show_admin_column' => true,
    			'query_var'         => true,
                'capabilities'			=> array(
                	'manage_terms' 		=> 'manage_product_terms',
    				'edit_terms' 		=> 'edit_product_terms',
    				'delete_terms' 		=> 'delete_product_terms',
    				'assign_terms' 		=> 'assign_product_terms',
                ),
    			'rewrite'           => array( 'slug' => 'brand' ),
    		);
    
    		register_taxonomy( 'brand', array( 'product' ), $args );
    	}
    

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 10:16

    Hello,

    1) You can change the Blog Layout in Dashboard->Theme Options->Blog Layout.

    2) Do you want to hide the image on the Single post page? If so, please add this code in custom.css

    .post-single >img {
        display: none;
    }

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 16, 2016 at 10:09

    Hello,

    Sorry, but we don’t provide support for 3rd-party plugins.

    You can edit this section in the \wp-content\themes\legenda\framework\theme-functions.php file on line 1280.

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 14, 2016 at 10:27

    Hello,

    You can set up the Lucia version in Dashboard->8Theme Options->Import/Export->Dummy Content.

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 14, 2016 at 10:23

    Hello,

    You’re welcome!

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 14, 2016 at 09:08

    Hello,

    Please provide us with link to the page and wp-admin access in Private Content to check issue.

    All plugins are external extensions which are included into theme because for each product we purchase “Extended license” and that’s why we are able to include it into them.
    This plugins work fine without activation and you can always get actual version if you want directly from us.
    Just ask and we’ll send you current version. We update plugins with theme updates time to time so with each next theme update, plugins will be also updated.
    The option with registering of these plugins has been already added to plugin and this only allow you to get automatic updates and support for this plugin directly from author if you need.
    You don’t need to register this product because it is not required but if you want to get those features, then you need to purchase this plugin directly from author. This is how it works for all themes on Themeforest and not only in our case.

    You can download the latest plugins versions at this link https://www.8theme.com/download-plugins/ ,
    enter your purchase code of the theme to get the plugins.

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 14, 2016 at 08:30

    Hello,

    Please copy the admin.css file into child-theme/framework/css/ folder. Then add CSS style into the same file

    .wp-core-ui .modal {
        display: none;
    }

    Then add the following code in function.php file of the Child Theme

    function mytheme_enqueue_options_style() {
        wp_enqueue_style( 'mytheme-options-style', get_stylesheet_directory_uri() . '/framework/css/admin.css' ); 
    }
    add_action( 'admin_enqueue_scripts', 'mytheme_enqueue_options_style' );

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 14, 2016 at 07:26

    Hello,

    Please try to add this code in child style.css file

    .menu .menu-full-width .nav-sublist-dropdown ul > li {
        width: 166px;
    }

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 14, 2016 at 07:15

    Hello,

    You’re welcome!

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 13, 2016 at 14:47

    Hello,

    Navigate to Dashboard->Theme Options->Blog Layout->Show “byline” on the blog->Off and Sidebar position change to without sidebar.

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 13, 2016 at 14:12

    Hello,

    You can do it, but without scroll, just move.

    In this case you need set some ID for the row element then add button element and set there link as row id.

    See screenshot: http://prntscr.com/b3k80p

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 13, 2016 at 14:04

    Hello,

    You’re welcome!

    Regards,
    Robert Hall

    Avatar: Robert Hall
    Robert Hall
    Participant
    May 13, 2016 at 13:24

    Hello,

    I’ve added this code in Global Custom CSS. Please check.

    .main-footer {
         padding-top: 0px; 
    }
    footer .address-company a.white-text{
    color:#fff !important;
    }
    .main-footer .widget-title {
        border-bottom: none; 
        margin-bottom: 0px;
        text-align: center;
        padding-bottom:0px;
        font-size: 16px;
    }

    Regards,
    Robert Hall

  • 1 2 3 64 65 66 383 384 385
    Viewing 1,950 results - 1,921 through 1,950 (of 11,542 total)
Viewing 30 posts - 1,921 through 1,950 (of 11,542 total)
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.