Forum Replies Created

Viewing 40 posts - 1,481 through 1,520 (of 2,796 total)
  • Author
  • in reply to: Side Bar Background Color #136479
     Laura
    Moderator

    Hello, just add this to style.css of child theme and edit it 🙂

    COPY CODE
    
    .sidebar.sidebar-main.col-sm-3.sidebar-left.col-sm-pull-9 {
        background: green;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Page specific css class #136470
     Laura
    Moderator

    Hello, use this 🙂

    COPY CODE
    
    body.forum-archive .bbp-forum-content {
        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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: login page design #136453
     Laura
    Moderator

    Hello, you can use this css, just add it to style.css of child theme

    COPY CODE
    
    .kleo-login-wrap {
        margin: 30px auto;
        width: 700px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Portfolio Featured Image Font and Position #136446
     Laura
    Moderator
    Not marked as solution
    in reply to: Hiding main and top menu #136385
     Laura
    Moderator

    Hello, if you use visual composer to create the page, you can add custom css at the CSS button of visual composer ( while editing the page )
    For main menu:

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Responsiveness on difference screen sizes #136374
     Laura
    Moderator
    Hello, please add this to style.css of child theme
    @media screen and (max-width: 767px) {
    h2.vc_custom_heading {
        font-size: 44px !important;
    }
    }
    
    in reply to: CONTACT FORM #136366
     Laura
    Moderator

    Hello, here for the texts

    COPY CODE
    
    h4.kleo-qc-title {
        font-weight: 700;
        font-style: italic;
    }
    div#kleo-quick-contact p {
        font-weight: 600;
        font-style: italic;
    }
    

    Which icons do you mean?

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: the facebook login does work from my ihpone #136364
     Laura
    Moderator

    Hello, here for the first:
    Add this to style.css of child theme

    COPY CODE
    
    @media (max-width: 991px) {
    a.kleo-facebook-connect.btn.btn-default {
        font-size: 13px;
    }
    }
    

    For the iPhone issue, it might be just yours check your browser settings, it may be related to them.

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: >> ReCaptcha isn’t visible with login popup #136359
     Laura
    Moderator

    Hello, to make the login popup larger addthis to style.css of child theme

    COPY CODE
    
    div#kleo-login-modal {
        max-width: 600px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: sticky menu #136298
     Laura
    Moderator

    Arreglado con el siguiente código

    COPY CODE
    
    .is-sticky .header-centered .navbar-header {
    float: left !important;
    position: absolute !important;
    }
    .is-sticky .header-centered .navbar-header .logo {
        float: left !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Discount Code more obvious #136286
     Laura
    Moderator
    Not marked as solution
    in reply to: CONTACT FORM #136089
     Laura
    Moderator

    Hello please add this to style.css of child theme

    COPY CODE
    
    div#kleo-quick-contact {
        width: 300px;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Menu does not stay open on mobile device #136070
     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Bugs and issues #136045
     Laura
    Moderator
    Not marked as solution
    in reply to: Help to remove… #135907
     Laura
    Moderator

    Hello 🙂
    1-Name or role?
    2- Add this to style.css of child theme

    COPY CODE
    
    .forum-archive h2.article-title {
        display: none;
    }
    

    3- Add this to style.css of child theme

    COPY CODE
    
    .bbp-search-form {
        width: 30%;
    }
    

    4. Add this to style.css of child theme

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Showing Entire Blog Post on Blog Page #135881
     Laura
    Moderator
    Not marked as solution
    in reply to: Changing images #135878
     Laura
    Moderator

    Hello, fixed, here is the code

    COPY CODE
    
    @media only screen and (max-width: 940px) {
    .top-bar {
        background: transparent !important;
    }
    .top-bar ul .name h1 a {
        background: transparent !important;
    }
    .top-bar ul li.toggle-topbar {
        background: transparent !important;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: drop down menu css #135712
     Laura
    Moderator

    Hello, just add this to style.css of child theme and change it as you prefer 🙂

    COPY CODE
    
    ul.dropdown-menu.sub-menu.pull-left a {
        color: red !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Inviting Members to Join Group #135571
     Laura
    Moderator
    Not marked as solution
    in reply to: Facebook login only #135566
     Laura
    Moderator
    Not marked as solution
    in reply to: redirecting and translation #135390
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator

    Hello, just add this to style.css of child theme and change it as you prefer

    COPY CODE
    
    .button.alert {
        background-color: black !important;
        border: 1px solid black !important; 
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Changing images #135362
     Laura
    Moderator

    Hello, try by adding this to style.css of child theme

    COPY CODE
    
    @media only screen and (max-width: 940px) {
    .top-bar {
        background: transparent !important;
    }
    .top-bar > ul .name h1 a {
        background: transparent !important;
    }
    .top-bar ul > li.toggle-topbar {
        background: transparent !important;
    }
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Easy Knowledge Base Incorrect Grouping #135222
     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: stuck on welcome page when logged in #135220
     Laura
    Moderator

    Hello 🙂
    – how do you put the user avatar on the right of the username in the main menu, instead of on the left?

    Not available right now

    – the user avatar doesn’t show up if the wordpress bar is enabled. I added the script to hide the wordpress bar from all users except admins, but when I’m logged in as an admin my account’s avatar blanks out in the top menu

    It may be an error with the script you added. Does it happens after deleting the script?

    – how can I make the profile toolbar icons smaller? Can I change the order in which they’re displayed?

    This plugin allows it http://www.buddyboss.com/purchase/buddypress-reorder-tabs/ For the icons, use this css ( add it to style.css of child theme )

    COPY CODE
    
    #buddypress div#item-nav ul li a:before {
        font-size: 30px;
    }
    

    – how can I make the profile display the profile/about me info by default instead of the activity?

    Check https://codex.buddypress.org/getting-started/guides/change-members-profile-landing-tab/

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: unable to Remove top bar #135219
     Laura
    Moderator

    Hello, you can try by adding this to style.css of child theme 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Hide widget for mobile. #134914
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator

    Hello, just add this to style.css of child theme

    COPY CODE
    
    #pmpro_account-profile .pmpro_actionlinks {
        display: none !important;
    }
    

    Let me know if it helps 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Groups & Member Bug #134870
     Laura
    Moderator
    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins. If this is useless please follow these steps to enable wp debug:
    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( 'WP_DEBUG', false ); and change FALSE value to TRUE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    define( 'WP_DEBUG_LOG', true );
    
    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run). Repeat the described actions and then check the debug.log file and let me know what error appears. If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider. After you have disabled the plugins try to see if the error persists. Cheers
    in reply to: facebook login only when enabled #134864
     Laura
    Moderator

    Hello, you can’t, only by adding custom css, you would need to add this to style.css of child theme

    COPY CODE
    
    .kleo-form-signin {
        padding: 0 20px 10px 20px;
        display: none;
    }
    .kleo-pop-title-wrap.main-color {
        display: none !important;
    }
    #kleo-login-modal .gap-20 {
        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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Change color for the data under the name in the directory #134859
     Laura
    Moderator

    Hello, try by adding this to style.css of child theme

    COPY CODE
    
    .search-item p {
        color: black !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Custom Link in Kleo Login Modal Popup #134855
     Laura
    Moderator

    Hello, you will find it at general-popups.php at page-parts folder. Find this:

    COPY CODE
    
    <p>
                        <em><?php esc_html_e( "or", 'kleo_framework' );?></em>    
                        <a>" class="new-account">
                            <?php esc_html_e( "Create an account", "kleo_framework" ); ?>
                        </a>
                    </p>
    

    And change /wp-login.php?action=register for your url 🙂

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: User Groups doesn’t complete process #134789
     Laura
    Moderator

    Hello, just add this to style.css of child theme 🙂

    COPY CODE
    
    .activity-read-more {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Ticket solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: MENU COLORS ON HOVER #134766
     Laura
    Moderator

    Hello, you can try with this code, at style.css 🙂

    COPY CODE
    
    .kleo-main-header .nav > li.active > a {
        box-shadow: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Client pictures are faded #134759
     Laura
    Moderator

    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins.

    If this is useless please follow these steps to enable wp debug:

    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( ‘WP_DEBUG’, false ); and change FALSE value to TRUE
    COPY CODE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    COPY CODE
    define( 'WP_DEBUG_LOG', true );
    

    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run).

    Repeat the described actions and then check the debug.log file and let me know what error appears.

    If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider.

    After you have disabled the plugins try to see if the error persists.

    Cheers

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

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

    in reply to: Search box drop down not showing content #134758
     Laura
    Moderator
    Please update the theme to latest version and the afferent plugins, you can check the plugin update status from wp-admin -> appearance -> install plugins. If this is useless please follow these steps to enable wp debug:
    •  Connect to your server by FTP
    • Look in root directory of your WordPress install and open wp-config.php
    • Search for define( 'WP_DEBUG', false ); and change FALSE value to TRUE
    define( 'WP_DEBUG', true );
    
    •   After this line add this:
    define( 'WP_DEBUG_LOG', true );
    
    WP_DEBUG_LOG is a companion to WP_DEBUG that causes all errors to also be saved to a debug.log log file inside the /wp-content/ directory. This is useful if you want to review all notices later or need to view notices generated off-screen (e.g. during an AJAX request or wp-cron run). Repeat the described actions and then check the debug.log file and let me know what error appears. If this is useless please try to deactivate additional plugins except Visual Composer, K-elements, BuddyPress, Paid memberships pro and revolution slider. After you have disabled the plugins try to see if the error persists. Cheers
     Laura
    Moderator
    Not marked as solution
    in reply to: Hide widget for mobile. #134748
     Laura
    Moderator
    Not marked as solution
    in reply to: Sidebar below revolution slider #134503
     Laura
    Moderator
    Not marked as solution
    in reply to: title background colour not saving #134501
     Laura
    Moderator

    Hello, try adding this to style.css of child theme 🙂

    COPY CODE
    
    section.container-wrap.main-title.alternate-color.title-single.main-right-breadcrumb.border-bottom {
        background: rgba(255,204,0,0.5);
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

    Please be patient as I try to answer each topic as fast as i can.

    If you like the theme or the support you've received please consider leaving us a review on Themeforest!

    Always happy to help you 🙂

Viewing 40 posts - 1,481 through 1,520 (of 2,796 total)

Log in with your credentials

Forgot your details?