Forum Replies Created

Viewing 40 posts - 441 through 480 (of 1,218 total)
  • Author
  • in reply to: Probleme on the hover on one post #75657
     sharmstr
    Moderator

    Try this in your quick css

    COPY CODE
    
    .caroufredsel_wrapper img {
        width: 100% !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: jQuery navbar align setting #75655
     sharmstr
    Moderator

    try this

    COPY CODE
    
    li.menu-item-7267>a {
        display: inline;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Products stretched on site #75640
     sharmstr
    Moderator

    try this in your quick css

    COPY CODE
    
    .woocommerce ul.products li.product figure > a {
        height: auto !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: profile images in the activity tag #75507
     sharmstr
    Moderator

    Add this as well

    COPY CODE
    
    .activity-avatar {
        border-radius: 100% !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Theme setting (stiling options) #75355
     sharmstr
    Moderator

    Try this in your child theme’s functions.php file.

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    

    Go back to your theme options, makes some changes and save. If they changes dont show up, clear your cache.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Page title area responsive image #75349
     sharmstr
    Moderator
    This reply has been set as private.
    in reply to: Disable Top Navigation #75321
     sharmstr
    Moderator

    Because you can’t see the open icons which is what you need to click on. Put this in your quick css

    COPY CODE
    
    .header-color .navbar-nav li .caret:after {
        color: #fff !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Revolution Slider for attached images in posts #75217
     sharmstr
    Moderator

    There are gallery shortcodes, but if you put it in single-cpt.php there’s no way to set the images. You are better off adding the theme general setting metabox to your cpt so you can add the image in the cpt editor. Put this in your child theme’s functions.php file and change the post type name.

    COPY CODE
    
    add_filter( 'kleo_meta_boxes', 'cpt_kleo_metaboxes' );
    /**
     * Define the metabox and field configurations.
     *
     * @param  array $meta_boxes
     * @return array
     */
    function cpt_kleo_metaboxes( array $meta_boxes ) {
    
    	// Start with an underscore to hide fields from custom fields list
    	$prefix = '_kleo_';
    	
    	$meta_boxes[] = array(
    		'id'         => 'general_settings',
    		'title'      => 'Theme General settings',
    		'pages'      => array( 'customposttypename' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'default',
    		'show_names' => true, // Show field names on the left
    		'fields'     => array(
    			array(
    				'name' => 'Display settings',
    				'desc' => '',
    				'id'   => 'kleodisplay',
    				'type' => 'tab'
    			),
    			array(
    				'name' => 'Centered text',
    				'desc' => 'Check to have centered text on this page',
    				'id'   => $prefix . 'centered_text',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Top bar status',
    				'desc' => 'Enable/disable site top bar',
    				'id'   => $prefix . 'topbar_status',
    				'type' => 'select',
    				'options' => array(
    						array('value' => '', 'name' => 'Default'),
    						array('value' => '1', 'name' => 'Visible'),
    						array('value' => '0', 'name' => 'Hidden')
    					),
    				'value' => ''
    			),
    			array(
    				'name' => 'Hide Header',
    				'desc' => 'Check to hide whole header area',
    				'id'   => $prefix . 'hide_header',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Hide Footer',
    				'desc' => 'Check to hide whole footer area',
    				'id'   => $prefix . 'hide_footer',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Hide Socket area',
    				'desc' => 'Check to hide the area after footer that contains copyright info.',
    				'id'   => $prefix . 'hide_socket',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Custom Logo',
    				'desc' => 'Use a custom logo for this page only',
    				'id'   => $prefix . 'logo',
    				'type' => 'file',
    			),
    			array(
    				'name' => 'Custom Logo Retina',
    				'desc' => 'Use a custom retina logo for this page only',
    				'id'   => $prefix . 'logo_retina',
    				'type' => 'file',
    			),
    			array(
    				'name' => 'Transparent Main menu',
    				'desc' => 'Check to have Main menu background transparent.',
    				'id'   => $prefix . 'transparent_menu',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
                array(
                    'name' => 'Transparent Main menu color',
                    'desc' => '',
                    'id'   => $prefix . 'transparent_menu_color',
                    'type' => 'select',
                    'options' => array(
                        array('value' => 'white', 'name' => 'White'),
                        array('value' => 'black', 'name' => 'Black')
                    ),
                    'value' => 'white'
                ),
                array(
                    'name' => 'Social share',
                    'desc' => 'Display social share at bottom of the single page.',
                    'id'   => $prefix . 'blog_social_share',
                    'type' => 'select',
                    'options' => array(
                        array('value' => '', 'name' => 'Default'),
                        array('value' => '1', 'name' => 'Visible'),
                        array('value' => '0', 'name' => 'Hidden')
                    ),
                    'value' => ''
                ),
    				
    				
    			array(
    				'name' => 'Title section',
    				'desc' => '',
    				'id'   => 'kleoheader',
    				'type' => 'tab'
    			),
                array(
                    'name' => 'Section Layout',
                    'desc' => '',
                    'id'   => $prefix . 'title_layout',
                    'type' => 'select',
                    'options' => array(
                        array('value' => '', 'name' => 'Default'),
                        array('value' => 'regular', 'name' => 'Regular'),
                        array('value' => 'center', 'name' => 'Centered'),
                        array('value' => 'right_breadcrumb', 'name' => 'Right Breadcrumb')
                    ),
                    'value' => ''
                ),
                array(
                    'name' => 'Custom page title',
                    'desc' => 'Set a custom page title here if you need.',
                    'id'   => $prefix . 'custom_title',
                    'type' => 'text',
                ),
    			array(
    				'name' => 'Hide the title',
    				'desc' => 'Check to hide the title when displaying the post/page',
    				'id'   => $prefix . 'title_checkbox',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Breadcrumb',
    				'desc' => '',
    				'id'   => $prefix . 'hide_breadcrumb',
    				'type' => 'select',
    				'options' => array(
    						array('value' => '', 'name' => 'Default'),
    						array('value' => '0', 'name' => 'Visible'),
    						array('value' => '1', 'name' => 'Hidden')
    					),
    				'value' => ''
    			),
                array(
                    'name' => 'Hide information',
                    'desc' => 'Check to hide contact info in title section',
                    'id'   => $prefix . 'hide_info',
                    'type' => 'checkbox',
                    'value' => '1'
                ),
                array(
                    'name' => 'Top Padding',
                    'desc' => 'Put a value without px. Example: 20<br>Default value is taken from Theme options - Header - Title/Breadcrumb section',
                    'id'   => $prefix . 'title_top_padding',
                    'type' => 'text',
                ),
                array(
                    'name' => 'Bottom Padding',
                    'desc' => 'Put a value without px. Example: 20<br>Default value is taken from Theme options - Header - Title/Breadcrumb section',
                    'id'   => $prefix . 'title_bottom_padding',
                    'type' => 'text',
                ),
                array(
                    'name' => 'Text Color',
                    'desc' => 'Override the default text color as set in Theme options - Styling options - Title',
                    'id'   => $prefix . 'title_color',
                    'type' => 'colorpicker',
                    'value' => ''
                ),
                array(
                    'name' => 'Background Image',
                    'desc' => 'Choose a background image for the section.',
                    'id'   => $prefix . 'title_bg',
                    'type' => 'file',
                    'bg_options' => 'yes'
                ),
                array(
                    'name' => 'Background Color',
                    'desc' => 'If an image is not set the color will be used',
                    'id'   => $prefix . 'title_bg_color',
                    'type' => 'colorpicker',
                    'value' => ''
                ),
    
                array(
                    'name' => 'Media',
                    'desc' => '',
                    'id'   => 'kleomedia',
                    'type' => 'tab'
                ),
                array(
                    'name' => 'Show media on post page',
                    'desc' => 'If you want to show image/gallery/video/audio before the post on single page',
                    'id'   => $prefix . 'post_media_status',
                    'type' => 'select',
                    'options' => array(
                        array('value' => '', 'name' => 'Default'),
                        array('value' => '1', 'name' => 'Yes'),
                        array('value' => '0', 'name' => 'No')
                    ),
                    'value' => ''
                ),
                array(
                    'name' => 'Slider',
                    'desc' => 'Used when you select the Gallery format. Upload an image or enter an URL.',
                    'id'   => $prefix . 'slider',
                    'type' => 'file_repeat',
                    'allow' => 'url'
                ),
                array(
                    'name' => 'Video oEmbed URL',
                    'desc' => 'Used when you select Video format. Enter a Youtube, Vimeo, Soundcloud, etc URL. See supported services at <a target="_blank" href="http://codex.wordpress.org/Embeds">http://codex.wordpress.org/Embeds</a>.',
                    'id'   => $prefix . 'embed',
                    'type' => 'oembed',
                ),
    
                array(
                    'name' => 'Video Self hosted(mp4)',
                    'desc' => 'Used when you select Video format. Upload your MP4 video file. Setting a self hosted video will ignore Video oEmbed above.',
                    'id'   => $prefix . 'video_mp4',
                    'type' => 'file',
                ),
                array(
                    'name' => 'Video Self hosted(ogv)',
                    'desc' => 'Used when you select Video format. Upload your OGV video file.',
                    'id'   => $prefix . 'video_ogv',
                    'type' => 'file',
                ),
                array(
                    'name' => 'Video Self hosted(webm)',
                    'desc' => 'Used when you select Video format. Upload your WEBM video file.',
                    'id'   => $prefix . 'video_webm',
                    'type' => 'file',
                ),
                array(
                    'name' => 'Video Self hosted Poster',
                    'desc' => 'Used to show before the video loads',
                    'id'   => $prefix . 'video_poster',
                    'type' => 'file',
                ),
    
                array(
                    'name' => 'Audio',
                    'desc' => 'Used when you select Audio format. Upload your audio file',
                    'id'   => $prefix . 'audio',
                    'type' => 'file',
                )
    		)
    	);
    
    	$meta_boxes[] = array(
    		'id'         => 'post_meta',
    		'title'      => 'Theme Post Settings',
    		'pages'      => array( 'post' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'default',
    		'show_names' => true, // Show field names on the left
    		'fields'     => array(
    
    				array(
    				'name' => 'Hide post meta',
    				'desc' => 'Check to hide the post meta when displaying a post',
    				'id'   => $prefix . 'meta_checkbox',
    				'type' => 'checkbox',
    				'value' => '1'
    			),
    			array(
    				'name' => 'Related posts',
    				'desc' => 'Display related posts at bottom of the single post display',
    				'id'   => $prefix . 'related_posts',
    				'type' => 'select',
    				'options' => array(
    						array('value' => '', 'name' => 'Default'),
    						array('value' => '1', 'name' => 'Visible'),
    						array('value' => '0', 'name' => 'Hidden')
    					),
    				'value' => ''
    			),
    		),
    	);
    	
    	
    	
    	$meta_boxes[] = array(
    		'id'         => 'post_layout',
    		'title'      => 'Post Layout',
    		'pages'      => array( 'post', 'product', 'portfolio' ), // Post type
    		'context'    => 'side',
    		'priority'   => 'default',
    		'show_names' => false, // Show field names on the left
    		'fields'     => array(
    			
    			array(
    				'name' => 'Post layout',
    				'desc' => '',
    				'id'   => $prefix . 'post_layout',
    				'type' => 'select',
    				'options' => array(
    						array('value' => 'default', 'name' => 'Default'),
    						array('value' => 'right', 'name' => 'Right Sidebar'),
    						array('value' => 'left', 'name' => 'Left sidebar'),
    						array('value' => 'no', 'name' => 'Full width, no sidebar'),
    						array('value' => '3lr', 'name' => '3 columns, Right and Left sidebars'),
    						array('value' => '3ll', 'name' => '3 columns, 2 Left sidebars'),
    						array('value' => '3rr', 'name' => '3 columns, 2 Right sidebars'),
    					),
    				'value' => 'right'
    			),
    
    				
    		),
    	);
    	
    	$meta_boxes[] = array(
    		'id'         => 'header_content',
    		'title'      => 'Header content(optional)',
    		'pages'      => array( 'post', 'page', 'product' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'default',
    		'show_names' => false, // Show field names on the left
    		'fields'     => array(
    	
    				array(
    				'name' => 'Header content',
    				'desc' => 'This will be displayed right after the menu. Shortcodes are allowed',
    				'id'   => $prefix . 'header_content',
    				'type' => 'textarea',
    			),
    				
    		),
    	);
    	
    	$meta_boxes[] = array(
    		'id'         => 'bottom_content',
    		'title'      => 'Bottom content(optional)',
    		'pages'      => array( 'post', 'page', 'product' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'default',
    		'show_names' => false, // Show field names on the left
    		'fields'     => array(
    	
    				array(
    				'name' => 'Bottom content',
    				'desc' => 'This will be displayed right after the generated page content ends. Shortcodes are allowed',
    				'id'   => $prefix . 'bottom_content',
    				'type' => 'textarea',
    			),
    				
    		),
    	);
    	
    	$meta_boxes[] = array(
    		'id'         => 'clients_metabox',
    		'title'      => __('Clients - link', 'kleo_framework'),
    		'pages'      => array( 'kleo_clients' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'default',
    		'show_names' => false, // Show field names on the left
    		'fields' => array(
    			array(
    				'name' => 'Client link',
    				'desc' => 'http://example.com',
    				'id'   => $prefix . 'client_link',
    				'type' => 'text',
    			),
    		)
    	);
            
    	$meta_boxes[] = array(
    		'id'         => 'testimonials_metabox',
    		'title'      => __('Testimonial - Author description', 'kleo_framework'),
    		'pages'      => array( 'kleo-testimonials' ), // Post type
    		'context'    => 'normal',
    		'priority'   => 'high',
    		'show_names' => false, // Show field names on the left
    		'fields' => array(
    			array(
    				'name' => 'Author description',
    				'desc' => '',
    				'id'   => $prefix . 'author_description',
    				'type' => 'text',
    			),
    		)
    	);
    
        //Custom menu
        $kleo_menus = wp_get_nav_menus();
        $menu_options = array();
        $menu_options[] = array( 'value' => 'default', 'name' => 'Site default' );
        foreach ( $kleo_menus as $menu ) {
            $menu_options[] = array( 'value' => $menu->slug, 'name' => $menu->name );
        }
    
        $meta_boxes[] = array(
            'id'         => 'page_menu',
            'title'      => 'Main menu options',
            'pages'      => array( 'page', 'post' ), // Post type
            'context'    => 'side',
            'priority'   => 'default',
            'show_names' => true, // Show field names on the left
            'fields'     => array(
    
                array(
                    'name' => 'Custom menu',
                    'desc' => '',
                    'id'   => $prefix . 'page_menu',
                    'type' => 'select',
                    'options' => $menu_options,
                    'value' => 'default'
                ),
                array(
                    'name' => 'Hide Shop',
                    'desc' => 'Check to hide the Shop icon in the main menu',
                    'id'   => $prefix . 'hide_shop_icon',
                    'type' => 'checkbox',
                    'value' => '1'
                ),
                array(
                    'name' => 'Hide Search',
                    'desc' => 'Check to hide the Search icon in the main menu',
                    'id'   => $prefix . 'hide_search_icon',
                    'type' => 'checkbox',
                    'value' => '1'
                ),
    
            ),
        );
    
    	
    	// Add other metaboxes as needed
    
    	return $meta_boxes;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: profile images in the activity tag #75175
     sharmstr
    Moderator

    Could be a plugin conflict. In any case, put this in your quick css

    COPY CODE
    
    #buddypress .activity-list .activity-avatar img.avatar {
        border-radius: 100%;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Error while saving and Mobile View Problem #75173
     sharmstr
    Moderator

    1 – Put this in your child theme’s functions.php file

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    

    2 – Edit your slide and check your visibility settings.

    3 – That’s not a function of Kleo. You’ll need a plugin. I know several people use Even Manager.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Custom navigation menu for single product #75034
     sharmstr
    Moderator

    Put this in your child theme’s functions.php file

    COPY CODE
    
    add_filter( 'kleo_meta_boxes', 'custom_kleo_metaboxes' );
    /**
     * Define the metabox and field configurations.
     *
     * @param  array $meta_boxes
     * @return array
     */
    function custom_kleo_metaboxes( array $meta_boxes )
    {
    
        // Start with an underscore to hide fields from custom fields list
        $prefix = '_kleo_';
        //Custom menu
        $kleo_menus = wp_get_nav_menus();
        $menu_options = array();
        $menu_options[] = array('value' => 'default', 'name' => 'Site default');
        foreach ($kleo_menus as $menu) {
            $menu_options[] = array('value' => $menu->slug, 'name' => $menu->name);
        }
    
        $meta_boxes[] = array(
            'id' => 'page_menu',
            'title' => 'Main menu options',
            'pages' => array('product'), // Post type
            'context' => 'side',
            'priority' => 'default',
            'show_names' => true, // Show field names on the left
            'fields' => array(
    
                array(
                    'name' => 'Custom menu',
                    'desc' => '',
                    'id' => $prefix . 'page_menu',
                    'type' => 'select',
                    'options' => $menu_options,
                    'value' => 'default'
                ),
                array(
                    'name' => 'Hide Shop',
                    'desc' => 'Check to hide the Shop icon in the main menu',
                    'id' => $prefix . 'hide_shop_icon',
                    'type' => 'checkbox',
                    'value' => '1'
                ),
                array(
                    'name' => 'Hide Search',
                    'desc' => 'Check to hide the Search icon in the main menu',
                    'id' => $prefix . 'hide_search_icon',
                    'type' => 'checkbox',
                    'value' => '1'
                ),
    
            ),
        );
    
    
        // Add other metaboxes as needed
    
        return $meta_boxes;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Add a solid divider between blog posts #75030
     sharmstr
    Moderator

    1 – That demo page isnt a blog page. Its was built using the kleo posts shortcode. That’s why the styling is different. In any case, put this in your quick css.

    COPY CODE
    
    .posts-listing.standard-listing .type-post {
        border-bottom-color: #e5e5e5;
        border-bottom-width: 1px;
        border-bottom-style: solid;
        padding-bottom: 20px;
    }
    

    2 – Looks like you’ve figured out how to remove the featured posts.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: problems with image lightbox #74993
     sharmstr
    Moderator

    Put this in your quick css

    COPY CODE
    
    .mfp-bg { 
        z-index: 1040 !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Font colour changes with change in screen size #74972
     sharmstr
    Moderator

    Put this in your quick css

    COPY CODE
    
    .vc_tta-color-black.vc_tta-style-modern .vc_tta-panel.vc_active .vc_tta-panel-title > a {
        color: #666666 !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

     sharmstr
    Moderator

    I’ve confirmed this to be an issue. Click on the gear icon and add this css for now.

    COPY CODE
    
    section.container-wrap {
        background-repeat: no-repeat;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Is there a way to make a row without padding? #74480
     sharmstr
    Moderator

    Click on the gear icon and put this css in it

    COPY CODE
    
    .wpb_content_element {
        margin-bottom: 0px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Settings not saving since latest update #74473
     sharmstr
    Moderator

    Put this in your child theme’s functions.php file and try again.

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Styling Image Caption #74324
     sharmstr
    Moderator

    Every wp page type as a body class that has the type. So try this

    COPY CODE
    
    .single-post .wp-caption p.wp-caption-text {
     float: left;
     margin-top: 15px;
     margin-left: 20px;
     border-left: 1px solid #e7e7e7;
     font-size: 13px;
     line-height: 18px;
     text-align: left;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Is is possible to add variables to the redirect? #74307
     sharmstr
    Moderator

    I’m guessing you mean login redirect. If so, use Peter Login Redirect plugin. He’s has a [variable]username[/variable] variable that you can use.

    COPY CODE
    
    http://yoursite.com/members/[variable]username[/variable]/profile
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Adjust or Remove "Quick Shop" and "Add to Cart" #74149
     sharmstr
    Moderator

    Try this

    COPY CODE
    
    .shop-actions {
        display: none;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Background Transparency? #74116
     sharmstr
    Moderator

    The containers are already transparent, but you cant tell since the background is set on the main container.

    COPY CODE
    
    .container-wrap.main-color {
        background-color: transparent;
    }
    

    Then set a background on the left and right containers 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Header Theme Option not updating #74106
     sharmstr
    Moderator

    Try putting this in your child themes functions.php file.

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Boxed & Wide layout change #74043
     sharmstr
    Moderator

    Every wp page has a body class that has a selector for the type of page which makes it easy to apply css to a page type.

    COPY CODE
    
    
    .single-product .container-full {
    padding: 30px;
    }
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: tagline #73911
     sharmstr
    Moderator

    There’s no action to inject it, so you’ll have to copy /kleo/page-parts/general-header-section.php to your child theme and change the following (starting around line 149)

    COPY CODE
    
    <?php
    					// Main menu
    					echo $primary_menu;
    					?>
    
    COPY CODE
    
    <?php
    					// Main menu
    					echo $primary_menu;
    					?>
                        <span style="float:left; clear:both; margin-top:-15px;"><?php echo get_bloginfo ( 'description' ); ?></span>
    

    Adjust the inline css as you need.

    Also, be sure to compare this file to any new Kleo updates of the file.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: How do you delete the text under the pictures? #73899
     sharmstr
    Moderator

    Try this in quick css

    COPY CODE
    
    .activity .rtmedia-item-title {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Forum Theme & Header Avatar #73768
     sharmstr
    Moderator

    try this

    COPY CODE
    
    li.bbp-forum-freshness {
        text-align: right !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: showing category/post type #73730
     sharmstr
    Moderator

    Well, based on post format, I should say.

    You can also target categories like this. Just change the ‘courses’ to your category name.

    COPY CODE
    
    .masonry-listing .category-courses .post-title {
        border-left: 3px solid #fc604a !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Changing Google Fonts & Changing Site URL Colors #73721
     sharmstr
    Moderator

    Dont use that link. Try this in your functions.php file.

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    

    But as the other topic indicated, it sounds more like a caching issue.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Vertical lines between images #73717
     sharmstr
    Moderator

    Use this css

    COPY CODE
    
    .activity-timeline {
        border-right-width: 0px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: custom image for header menu #73709
     sharmstr
    Moderator

    Add a menu item. Then use your browsers inspector to get the item id #. Then use that item id number in the following css

    COPY CODE
    
    .menu-item-262 a:before {
        content: url(http://seventhqueen.com/themes/kleo/wp-content/uploads/avatars/1/c0f2051c07d476ffa721119f235dad43-bpthumb.jpg);
    }
    

    Obviously change the url to your image url.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: CSS Font Bold Strong #73612
     sharmstr
    Moderator

    The font weight on the demo is still 300, but its being overriden by the b, strong css in bootstrap which sets to bold. Try this in your quick css.

    COPY CODE
    
    b, strong {
        font-weight: bold !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Visual Composer content Above Buddypress Members Page #73562
     sharmstr
    Moderator

    Put this in your child theme’s functions.php file

    COPY CODE
    
    add_action( 'bp_before_directory_members','add_vc_stuff' );
    function add_vc_stuff() {
        echo do_shortcode('[your vc shortcode here]');
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Issue, Live notification box size #73554
     sharmstr
    Moderator

    You can try adjusting the width of it with this css

    COPY CODE
    
    .kleo-toggle-submenu {
        width: 400px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: problems with the login screen #73551
     sharmstr
    Moderator

    Try this css

    COPY CODE
    
    .mfp-bg.kleo-mfp-zoom.mfp-ready {
        z-index: 100 !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: The dreaded login #73550
     sharmstr
    Moderator

    Try this in your child theme’s function.php file

    COPY CODE
    
    add_filter( 'register_url', 'custom_register_url' );
    function custom_register_url( $register_url )
    {
        $register_url = "http://www.yoursite.com/membership-account/membership-levels/";
        return $register_url;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: long name broke page layout #73544
     sharmstr
    Moderator
    COPY CODE
    
    .item-desc {
        width: 95%;
    }
    #groups-dir-list .item-desc p {
        overflow: hidden;
        word-wrap: break-word;
    }
    #groups-dir-list .item-title a {
        word-wrap: break-word;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Styling Options do not publish to site #73462
     sharmstr
    Moderator

    Try this in your child theme’s functions.php file

    COPY CODE
    
    add_filter( 'kleo_theme_options_ajax', '__return_false' );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Forum Theme & Header Avatar #73414
     sharmstr
    Moderator

    Try this css

    COPY CODE
    
    tt {
        font-family: Open Sans !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: Buddypress: Notice, Warning and Error ;) #73395
     sharmstr
    Moderator

    Turn off debug display in your wp_config.php file.

    COPY CODE
    
    define( 'WP_DEBUG_DISPLAY', false );
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

    in reply to: long name broke page layout #73392
     sharmstr
    Moderator

    I need to see a link for the one that’s not working.

    for messages

    COPY CODE
    
    #message-subject {
        word-wrap: break-word;
        max-width: 95%;
    }
    .message-content {
        word-wrap: break-word;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    This support site is not about custom work. If you need custom development please contact cornel@seventhqueen.com

Viewing 40 posts - 441 through 480 (of 1,218 total)

Log in with your credentials

Forgot your details?