Forum Replies Created

Viewing 40 posts - 1,361 through 1,400 (of 2,990 total)
  • Author
  • in reply to: Help make transparent CSS #138865
     Radu
    Moderator

    Hi,

    For fixing sidebar, I’ve suggested that topic read it and to inspire from it an
    Replace widgets-container with your desired class or div that you want to float for default you can use the next snippet that will keep all sidebar widgets floating

    COPY CODE
    
    <script>
    jQuery( document ).ready(function() {
    	(function(jQuery){
    	        jQuery('.widgets-container').affix({
    	          offset: {
    	            top: 100,
    	            bottom: 0,
    	          }
    	        });
    	    })
    	( jQuery );
    });
    </script>
    
    

    If you are not ok with this use this instead

    COPY CODE
    
    .sidebar .widgets-container {
        position: fixed;
    }
    

    Both methods works choose what you want, for further custom development contact a developer.

    Here are the CSS selectors for small border before the titles

    COPY CODE
    
    .masonry-listing .format-video .post-title
    { border-left: 3px solid #07baf4; }
    .masonry-listing .format-standard .post-title
    { border-left: 3px solid #8a52ad; }
    .masonry-listing .format-image .post-title
    { border-left: 3px solid #fc604a; }
    .masonry-listing .format-gallery .post-title
    { border-left: 3px solid #43ae9e; }
    .masonry-listing .format-audio .post-title
    { border-left: 3px solid #367bb7; }
    .masonry-listing .format-link .inner-content
    { margin-top: 10px; border-left: 3px solid #00c5c4; }
    .masonry-listing .format-aside .post-title
    { border-left: 3px solid #ee2534; }
    

    The Css will be added to wp-admin -> theme options -> general settings -> quick css

    Cheers
    R.

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

    Hi,

    Yes…you right this wasn’t controlled by the VC

    Use this selector

    COPY CODE
    
    .home #main-container .template-page { padding-top:0px;}
    

    The Css will be added to wp-admin -> theme options -> general settings -> quick css

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Search function #138847
     Radu
    Moderator

    Add also this CSS

    COPY CODE
    
    .kleo-search-form #searchform .input-lg { opacity:1 !important;}
    

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Product Modal #138623
     Radu
    Moderator

    Hi,

    Try to use this code

    COPY CODE
    
    add_action( ‘init’, ‘remove_product_meta’ );
    
    function remove_product_meta() {
    	if ( has_term( 'audio', 'product_cat' ) ) {
    
    		remove_action('woocommerce_single_product_modal_summary', 'woocommerce_template_single_add_to_cart', 30 );
    
    	}
    }
    

    Instead of audio there should be category name.

    Cheers
    R.

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

    Hi,

    In this case add this line

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

    To your wp-content/themes/kleo-child/functions.php

    And then test if the settings will be saved

    Let me know

    Cheers
    R.

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

    CSS’s

    COPY CODE
    
    .main-color #search-members-form, .main-color #search-groups-form, .main-color #bbpress-forums form#bbp-search-form { box-shadow:1px 1px 1px 1px red;}
    #buddypress #friend-list li div.item-avatar, #buddypress #member-list li div.item-avatar, #buddypress #members-list li div.item-avatar {border:5px solid red;}
    #buddypress .friends ul#members-list .item-avatar .kleo-online-status, #buddypress ul#member-list .item-avatar .kleo-online-status, #buddypress #members-dir-list ul#members-list .item-avatar .kleo-online-status {border-color:red; }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Mobile Menu background color for Transparent Header #138467
     Radu
    Moderator
    Not marked as solution
    in reply to: Multisite buddypress conflict #138451
     Radu
    Moderator
    Not marked as solution
    in reply to: Help make transparent CSS #138447
     Radu
    Moderator

    Hi,

    There are the selectors for the masonry style

    COPY CODE
    
    section.container-wrap.main-color { background: #999;}
    
    .masonry-listing .post-item .post-content { background: green !important;}
    
    .masonry-listing .main-color blockquote, .main-color .masonry-listing .post-content {border-left-color:red; }
    
    .masonry-listing .post-title { font-size:3.2em;  }
    .masonry-listing .post-title  a {color:yellow !important;}
    .main-color .masonry-listing .post-footer { border-top-color:orange;}
    
    .post-content { border: 1px solid pink !important; }
    

    If you want to apply styles only on blog page aff before each line .blog and space

    example : .blog .main-color .masonry-listing .post-footer { border-top-color:orange;}

    Read more transparent

    COPY CODE
    
    .hr-title abbr {
        background: transparent !important;
    }
    

    For the fixing elements or sidebar single solution, it’s this : https://archived.seventhqueen.com/forums/topic/activity-stream-shortcode#post-135494

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Search function #138437
     Radu
    Moderator

    Use this selector

    COPY CODE
    
    #socket .kleo-search-form #searchform .input-lg {
        height: 40px !important;
        text-align: center;
    }
    

    Css will be added to wp-admin -> theme options -> general settings -> quick css

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Remove title header from portfolio and post pages? #138312
     Radu
    Moderator

    Hi,

    For the post pages you can hide the title with this css

    COPY CODE
    
    .single h1.page-title {
        display: none !important;
    }
    
    

    For portfolio provide link to can see it

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: header logo url #138305
     Radu
    Moderator

    Hi,

    Ok use this CSS, for the rest of customizations do it yourself because these kind of services are not included in support plan

    COPY CODE
    
    #buddypress form#whats-new-form  .customSelect.customSelect {
        border-radius: 3px !important;
        margin-right:10px;
        padding:4px 10px;
    
    }
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator
    Not marked as solution
    in reply to: Row under main page heading with ‘+’ symbol. #138117
     Radu
    Moderator
    Not marked as solution
    in reply to: Menu Drop Down Movement #137949
     Radu
    Moderator

    Apply also this css

    COPY CODE
    
    li.menu-item-has-children ul.pull-left {
        left: -100% !important;
        text-align: center;
        float:right !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Widget font #137729
     Radu
    Moderator

    Hi,

    use those CSS

    COPY CODE
    
    .sidebar .widget_kleo_recent_posts ul.news-widget-wrap .news-headline {
        font-size: 15px;
    }
    
    .sidebar .widget_kleo_recent_posts ul.news-widget-wrap .news-headline .news-time {
        display: none;
    }
    

    The css will be added to wp-admin -> theme options -> general settings -> quick css

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Quotation Background Color #137629
     Radu
    Moderator

    Hi,

    The quote background color can be changed with this css selector

    COPY CODE
    
    /*Style quote background general*/
    article.format-quote .post-content { background: red !important; }
    
    /*Style quote background by category that belongs*/
    article.format-quote.category-thoughts .post-content {background:green !important;}
    
    

    The Css will be added to wp-admin -> theme options -> general settings -> quick css

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Titles in bold #137626
     Radu
    Moderator

    This is the selector for product pages title

    COPY CODE
    
    h1.product_title.entry-title {
        font-size: 2em !important;
        line-height: 1em !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Menu Drop Down Movement #137624
     Radu
    Moderator

    Hi,

    Use this CSS

    COPY CODE
    
    li.kleo-user_avatar-nav ul.pull-left {
        left: -100% !important;
        text-align: center;
        float:right !important;
    }
    

    The Css will be added to wp-admin -> theme options -> general settings -> quick css

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: how to add a link to profiles? #137609
     Radu
    Moderator

    Hi,

    add this code to wp-content/themes/kleo-child/functions.php

    COPY CODE
    
    function member_link_name_shortcode_func(  ) {
    
        if(is_user_logged_in()) {
            if (function_exists('bp_is_active')) {
                $logged_in_username = bp_get_loggedin_user_fullname();
                $logged_in_link = bp_loggedin_user_domain( '/' );
                $output = '<a href=".$logged_in_link.">'. $logged_in_username.' </a>';
                return $output;
    
            } elseif (class_exists('bbPress')) {
                $logged_in_username = bbp_get_user_nicename(bbp_get_current_user_id());
                $logged_in_link = bbp_get_user_profile_url( bbp_get_current_user_id() );
                $output = '<a href=".$logged_in_link.">'. $logged_in_username.' </a>';
                return $output;
            }
        }
    }
    
    add_shortcode('member_name','member_link_name_shortcode_func');
    

    Then add this shortcode in the page that you want to show the username + link

    [member_name]

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Titles in bold #137575
     Radu
    Moderator

    Try with this css

    COPY CODE
    
    .main-title .page-title {
        font-size: 43px;
    }
    

    If it not works provide to me a screenshot that pointing out the text

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Text Field / Text Area under breadcrumbs bar #137499
     Radu
    Moderator

    Hi,

    use this php code, add it to wp-content/themes/kleo-child/functions.php

    COPY CODE
    function ads_before_content() {
    
        echo '
        <div style="width:728px;height:90px;background-color:red;display:block;margin:0 auto;">
        728 AD
        </div>
        ';
    
    }
    add_action ('kleo_before_content', 'ads_before_content');

    Replace

    COPY CODE
        <div style="width:728px;height:90px;background-color:red;display:block;margin:0 auto;">
        728 AD
        </div>

    With your desired code

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Single Post Page “edit” links #137487
     Radu
    Moderator

    Hi,

    Add this css

    COPY CODE
    
    .single article .article-meta .edit-link {
        display: none;
    }
    

    The Css will be added to wp-admin -> theme options -> general settings -> quick css

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Image Sizes #137483
     Radu
    Moderator

    Hi,

    This is the CSS selector

    COPY CODE
    
    .category .small-listing .post-content .post-image img { width:100%;height:100%;min-width:200px;min-height:200px; }
    

    Adjust the min width and min height values with your desired

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: News Highlight Bottom Side #137482
     Radu
    Moderator

    Hi,

    Try with this css

    COPY CODE
    
    .news-highlight .standard-listing:not(.template-page) .type-post {
        padding: 10px;
        margin: 10px !important;
        border-bottom-width: 0px !important;
    }
    

    The Css will be added to wp-admin -> theme options -> general settings -> quick css

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Double in Primary Menu #137463
     Radu
    Moderator

    Hi,

    Sorry, now i see, for the moment please apply this css fix.. because i’ve tried to debugg this issue and it takes so much

    COPY CODE
    
    .groups ul#menu-primary-menu-2 {
        display: none;
    }
    

    Add this css to wp-admin -> theme options -> general settings -> quick css

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Shortcodes – Very poor documentation #137461
     Radu
    Moderator

    Hi,

    How do you have added the custom icons ? anyway these cannot be loaded thru a VC element only if you will use html code element in that you will paste the icon code, from example :

    COPY CODE
    
    <i class="icon-ICON_NAME"></i>
    

    If you cannot see all elements in Visual Composer please check if those are activated from wp-admin -> Visual Composer -> Role manager -> Elements

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Edit page button #137452
     Radu
    Moderator

    Hi,

    If you add at the start of the file something like

    COPY CODE
    <h1>T E S T</h1>

    You are able to see the H1 T E S T in page ? if not it means that the file it’s not rewriten, and you should make sure if you have child theme installed and activated or the folder names are correct

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Edit page button #137451
     Radu
    Moderator

    Hi,

    If you add at the start of the file something like

    COPY CODE
    <h1>T E S T</h1>

    You are able to see the H1 T E S T in page ? if not it means that the file it’s not rewriten, and you should make sure if you have child theme installed and activated or the folder names are correct

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: Edit page button #137448
     Radu
    Moderator

    Hi,

    If you add at the start of the file something like

    COPY CODE
    <h1>T E S T</h1>

    You are able to see the H1 T E S T in page ? if not it means that the file it’s not rewriten, and you should make sure if you have child theme installed and activated or the folder names are correct

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: We have errors here? #137447
     Radu
    Moderator
    Not marked as solution
    in reply to: Background color #137355
     Radu
    Moderator
    COPY CODE
    
    
    .kleo-masonry.masonry-listing .post-content {
        background: red;
    }
    
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Members Page #137347
     Radu
    Moderator

    Yes with this css

    COPY CODE
    
    #buddypress #friend-list .update, #buddypress #member-list .update, #buddypress #members-list .update { display:none;}
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Background color #137346
     Radu
    Moderator

    Testimonials

    COPY CODE
    
    .kleo-testimonials {
        background: red;
    }
    
    

    And kleo posts where it is ? provide screenshot that ponting out where

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
    in reply to: Background color #137337
     Radu
    Moderator

    Hi,

    Add this css to wp-admin -> theme options -> general settings -> quick css

    COPY CODE
    
    .news-focus {
        background: #eeeeee;
    }
    
    .news-highlight {
        background: #eeeeee;
    }
    

    Cheers
    R.

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

    Hi,

    We have the category name into a class attached to the body element to can style any element in any page.

    In your case you will have

    COPY CODE
    
    .category-news .masonry-listing .category-news .post-title {
    border-left: 6px solid #c90c33;
    }
    
    

    cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    in reply to: TITLE FONT #137316
     Radu
    Moderator

    Add and use this css

    COPY CODE
    
    h1.page-title {font-weight: bold;}
    

    Cheers
    R.

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution
Viewing 40 posts - 1,361 through 1,400 (of 2,990 total)

Log in with your credentials

Forgot your details?