Forum Replies Created

Viewing 40 posts - 1,401 through 1,440 (of 2,990 total)
  • Author
  • in reply to: Mobile view #137236
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    @media screen and (max-width: 480px) {
    .logo img {
        max-width: 240px;
    }
    }
    

    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: KLEO Buttons not lining up on mobile #137221
     Radu
    Moderator

    Use,

    this css

    COPY CODE
    
    @media(max-width:620px) {
        a.btn.kleo-show-login.with-icon.btn-link.btn-lg {
        font-size: 1em;
    }
    
    }
    

    the font size is to large that’s because

    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: Persistent scrollbar #137208
     Radu
    Moderator

    Hi,

    I see, you haven’t specified that you are using a laptop with touchscreen, currently we are working on this and on next theme update this will be fixed, meanwhile add this css to wp-admin -> appearance -> theme options -> Quick CSS

    COPY CODE
    
    html.touch #sidemenu-wrapper .sidemenu-main .scroll-container { overflow-y:hidden !important; }
    

    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,

    There are selectors for every post template change the color code with your desired color code

    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;
    }
    
    

    This 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: Uber Menu behind Content #137201
     Radu
    Moderator
    Not marked as solution
    in reply to: Toolset types and views #137191
     Radu
    Moderator

    Hi,

    Before running the function with the next details please perform a database backup.

    I’ve placed the new values directly in function

    COPY CODE
    
    add_action( 'init', 'wpv_dummy_framework_api' );
      
    function wpv_dummy_framework_api() {
        $framework_id = 'kleo_framework'; //This is actually unique value and can be anything.
        $framework_data = array(
            'name' => __( 'kleo_framework' ), //This is actually optional value and can be anything.
            'api_mode' => 'option', //Your framework provider states: "We use the options table"
            'api_handler' => 'sq_option', //Your Framework provider states "We use of_get_option"
        );
        if ( function_exists( 'wpv_api_register_framework' ) ) {
            wpv_api_register_framework( $framework_id, $framework_data );
        }
    }
    

    According to the documentation that you have provided instead of kleo_framework you can write anything you need but that’s is our framework domain name.

    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: Kleo Logo #137024
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    @media screen and (max-width: 480px) {
        img#logo_img {
        max-width: 290px;
    }
    }
    
    
    

    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: Change header color. #137009
     Radu
    Moderator

    Hi,

    Use this css

    COPY CODE
    
    @media(max-width:991px){
        .kleo-main-header.header-normal {
            background: #fff !important;
        }
    
        .header-color .navbar-toggle .icon-bar {
            background-color: #333 !important;
        }
    
    }
    
    
    

    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: News-Focus and News Highlight elements #137007
     Radu
    Moderator

    Hi,

    For the news focus use this css

    COPY CODE
    
    .news-focus .tab-content .posts-listing h3.post-title.entry-title {font-weight:bold;font-size:16px;}
    

    For news highlite

    COPY CODE
    
    .news-highlight h3.post-title.entry-title {font-weight:bold;font-size:16px;}
    
    

    This css can 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: Styling Problems with Kleo #136997
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    .header-color .dropdown-menu li a {
        color: #333 !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: Broken featured products page and double sharing options #136985
     Radu
    Moderator
    Not marked as solution
     Radu
    Moderator

    Use this instead

    COPY CODE
    
    .fullwidth-image-before-content, .fullwidth-image-before-content img {
        text-align: center;
    }
    

    Let me know

    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: Form 7 not displaying on mobile #136943
     Radu
    Moderator
    Hi, Ok now I see, please add this CSS
    @media (max-width: 900px) {
        .kleo-quick-contact-wrapper { display:none !important; }
    }
    
    This css will be added to wp-admin -> theme options -> general settings -> quick css Cheers R.
    in reply to: Blog content width #136831
     Radu
    Moderator

    Hi,

    You can set full width but use this to keep the post content with margins

    COPY CODE
    
    .single.single-post #main-container .article-content {
        max-width: 1280px;
        margin: 20px auto;
    }
    

    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: Broken featured products page and double sharing options #136818
     Radu
    Moderator
    Not marked as solution
    in reply to: prohibit to make a “response” to comment #136815
     Radu
    Moderator

    If you will paste this css instead the old one that i have provided to you it works ?

    COPY CODE
    
    div.activity-comments form.ac-form {display:none !important; }
    

    If not try with this

    COPY CODE
    
    #buddypress div.activity-comments form {display:none !important; }
    

    If not try with this

    COPY CODE
    
    div.activity-comments form {display:none !important; }
    

    If you have cache don’t forgot to empty the cache

    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: Broken featured products page and double sharing options #136803
     Radu
    Moderator
    Not marked as solution
    in reply to: Form 7 not displaying on mobile #136802
     Radu
    Moderator
    Not marked as solution
    in reply to: Titles in bold #136795
     Radu
    Moderator

    Try with this instead

    COPY CODE
    
    
    .post-title, h3.post-title {
        font-weight: bold !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: Social icons #136785
     Radu
    Moderator

    Hi

    COPY CODE
    
    /*All*/
    .header-color #top-social li a i {color:green;}
    
    /*Separate*/
    
    .header-color #top-social li a i.icon-youtube {color:red;}
    
    .header-color #top-social li a i.icon-facebook {color:blue;}
    
    .header-color #top-social li a i.icon-twitter { color:lightblue; }
    
    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 #136770
     Radu
    Moderator

    Hi,

    use this css to have that inline

    COPY CODE
    
    
    #buddypress form#whats-new-form #whats-new-submit {
        display: inline-flex;
    }
    
    

    And use this css to improve the design while loading, add this into wp-admin -> theme options -> general settings -> quick css at the top

    COPY CODE
    
    
    select#activity-privacy {
        opacity: 0 !important;
    }
    

    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: Mobile Nav – Save +/- icon color #136672
     Radu
    Moderator
    Add this css to wp-admin -> theme options -> general settings -> quick css
    .nav .caret:after {
        color: #fff !important;
    }
    
    Cheers R.
    in reply to: Social icons #136659
     Radu
    Moderator

    Hi,

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

    COPY CODE
    
    #top-social li i{
        font-size: 20px;
    }
    
    #top-social li a  {
    font-size:15px;
    }
    

    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: Broken featured products page and double sharing options #136638
     Radu
    Moderator
    Not marked as solution
    in reply to: My shop is display images very large and only one product #136626
     Radu
    Moderator

    With this css

    COPY CODE
    
    
    @media(min-width:1000px) {
    
        .woocommerce-page .related ul li.product img, .woocommerce-page .related ul.products li.product img {
            max-width:300px !important; 
            margin:0 auto;
        }
    
    }
    
    
    

    For the previous CSS there it’s a mistake on @media(min-width:100px) it should be 1000 not 100 add the missing 0

    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 #136623
     Radu
    Moderator

    Hi,

    use these selectors and replace red with your desired color

    COPY CODE
    
    #buddypress form#whats-new-form #whats-new-options select {
        border: 1px solid red;
    }
    
    .customSelect.customSelect { bordeR:1px solid red !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: Contact Form Issue #136566
     Radu
    Moderator
    Not marked as solution
    in reply to: My shop is display images very large and only one product #136545
     Radu
    Moderator

    Hi,

    The image it’s stretched in all available space you can use this css to limit the width of the image

    COPY CODE
    
    @media(min-width:100px) {
        .images .kleo-images-wrapper  img { max-width:400px;}
    }
    
    

    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: Add badges under cover photo depending on profile fields #136534
     Radu
    Moderator

    Hi,

    Add these CSS declarations for the badge div to make sure to don’t overlap items…

    COPY CODE
    
    div#badges {
        clear: both !important;
        width: 100%;
        display: inline-block;
    }
    

    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 #136531
     Radu
    Moderator

    Hi again,

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

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

    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,

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

    COPY CODE
    
    .tp-static-layers {
        position: initial !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: Add badges under cover photo depending on profile fields #136245
     Radu
    Moderator

    Kida the function and hook works, but maybe the code it’s rendered under the cover ?

    If you will use this function you will see that the content it’s added under the avatar

    COPY CODE
    
    function show_badge() {
    
        echo '<h1 style="text-align: center; z-index: 22 !important;position: inherit;"> TESTINGGGG </h1>';
        if ( bp_get_the_profile_field_name() == 'talent' ) {
            global $field;
            if ( bp_unserialize_profile_field( $field->data->value ) == "Photography" ) {
                echo 'is it working?';
            }
        }
    }
    
    add_action( 'bp_after_member_header', 'show_badge' );
    

    If this it’s not true if ( bp_get_the_profile_field_name() == ‘talent’ ) { the rest of the code (below) will not be executed.

    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 remove sidebar links from main header menu #136221
     Radu
    Moderator
    Not marked as solution
    in reply to: Member page template full width #136214
     Radu
    Moderator

    Hi,

    Use this css and let me know

    COPY CODE
    
    .members.directory div#main section.container-wrap .container {
        padding: 0;
        max-width: initial;
    }
    

    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: Cannot see group options in desktop browser #136125
     Radu
    Moderator
    Not marked as solution
    in reply to: Change Magnifyng glass icon color #136120
     Radu
    Moderator

    Hi,

    I think yes, upload your modified image to child theme in wp-content/themes/kleo-child/assets/img/

    then add this css to child theme style.css

    COPY CODE
    
    #bbpress-forums #bbp-search-form input[type=submit], #bbpress-forums #bbp-search-form input[type=submit] {
        border: 0;
        text-indent: -9999em;
        background: url(../../assets/img/sprite.png) no-repeat;
        width: 24px;
        height: 24px;
        border-radius: 100%;
        position: relative;
        float: right;
        margin-top: 3px;
    }
    

    Instead of ../../assets/img/sprite.png put your image url

    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: Form 7 not displaying on mobile #136003
     Radu
    Moderator
    Not marked as solution
    in reply to: Native Customizations / Functionality #135999
     Radu
    Moderator
    Not marked as solution
    in reply to: Background, header and breadcrumbs #135980
     Radu
    Moderator
    Not marked as solution
    in reply to: Conflict with Piklist #135976
     Radu
    Moderator

    Hi,

    Check this out :

    If you will use this CSS

    COPY CODE
    
    body {
        overflow-y: scroll !important;
    }
    

    You will be able to scroll on that certain page… so it seems that that plugin adds that inline style with overflow:initial.

    After you add that CSS don’t forget to remove this :

    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,401 through 1,440 (of 2,990 total)

Log in with your credentials

Forgot your details?