Forum Replies Created

Viewing 40 posts - 401 through 440 (of 2,796 total)
  • Author
  • in reply to: avatar not show corect in registration form #190151
     Laura
    Moderator

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

    COPY CODE
    
    ul.profile-thumbs li {
        height: 94px !important;
        width: 94px !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: Hide media from search results #190129
     Laura
    Moderator

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

    COPY CODE
    
    .search-results .wrap-content img {
        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: mobile bad visualization new topic/answer #190045
     Laura
    Moderator

    Hello, hope this helps 🙂

    Hide html notice

    COPY CODE
    
    .bbp-template-notice {
        display: none !important;
    }
    

    Move submit button on mobile

    COPY CODE
    
    @media (max-width: 991px) {
    .bbp-submit-wrapper {
        margin: 0 auto !important;
        position: absolute;
        margin-left: 25% !important;
        top: 88%;
    }
    }
    
    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 media from search results #190001
     Laura
    Moderator

    Hello, try by adding this to functions.php of child theme 🙂

    COPY CODE
    
    function attachments_search_pre_get_posts( $query ) {
     if (! is_search() )
        return $query;
      $post_types = array( 'post', 'page' );
      $query->set( 'post_type', $post_types );
      return $query;
    }
    add_filter( 'pre_get_posts', 'attachments_search_pre_get_posts' );
    
    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 🙂

     Laura
    Moderator

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

    COPY CODE
    
    dl.dl-horizontal dt {
        white-space: normal !important;
        text-align: start !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 🙂

     Laura
    Moderator
    Not marked as solution
    in reply to: how to chane header color its not changing anywhere #189928
     Laura
    Moderator
    Not marked as solution
    in reply to: Hide “Members” in top bar if logged out #189901
     Laura
    Moderator
    Not marked as solution
    in reply to: Access to Mobile Header Formatting #189624
     Laura
    Moderator

    Hello, the code is the same for mobile, but you need to use a special code, check below:

    COPY CODE
    
    @media (max-width: 991px) {
    #header {
        background: red !important;
    }
    }
    

    (All mobile codes goes inside that media tag)
    Attached you will see some of the footer classes

    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 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: Color Change Automatic #189614
     Laura
    Moderator

    Hello, hope this helps

    COPY CODE
    
    #bbpress-forums .hentry div.bbp-reply-content, #bbpress-forums .hentry div.bbp-topic-content {
        border: 3px solid #e9e9e98c !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: New Page with Sidebars Custom #189613
     Laura
    Moderator

    Hello, please try

    COPY CODE
    
    .template-page.col-sm-6.col-sm-push-3.tpl-3lr {
        background: 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: Learndash Layout #189585
     Laura
    Moderator
    Not marked as solution
    in reply to: Hide navigation menu on mobiles #189583
     Laura
    Moderator

    Hello, this should work, replace it with your current code

    COPY CODE
    
    .home .sticky-wrapper .kleo-main-header {
        top: -70px !important;
        position: fixed;
    }
     
    .home .sticky-wrapper.is-sticky .kleo-main-header {
        top: 0px !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: Field alignment full screen mode #189580
     Laura
    Moderator

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

    COPY CODE
    
    div#profile-details-section {
        float: none !important;
        margin: 0 auto !important;
    }
    div#basic-details-section {
        float: none !important;
        margin: 0 auto !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: How to hide any content when not logged in #189510
     Laura
    Moderator

    Hello, this is a code that is not well added to functions.php

    COPY CODE
    
    function SQ7R_logout_redirect() {wp_redirect( home_url('/logout/') );exit();} add_action('wp_logout','SQ7R_logout_redirect');
    

    that is why it appears there
    And as i see you have set the register page as the front page.. this would create issues, if you want to restrict the site, use the register form as normal at Settings > Buddypress > Pages set the register page and at Settings > Reading set the normal homepage.

    Then you can use either “restrict my site” plugin or “buddypress members only” plugin to make some areas of your site only for registered users

    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 navigation menu on mobiles #189306
     Laura
    Moderator

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

    COPY CODE
    
    .kleo-mobile-switch {
        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: New Page with Sidebars Custom #189300
     Laura
    Moderator

    Hello, the first one still has an issue, try

    COPY CODE
    
    .sidebar .sidebar-main .col-sm-3 .col-sm-pull-6 .sidebar-3lr {
    background-color: #f5f5f5 !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: New Page with Sidebars Custom #189223
     Laura
    Moderator

    Hello 🙂
    1- The css is not well formatted, try

    COPY CODE
    
    .sidebar sidebar-main col-sm-3 col-sm-pull-6 sidebar-3lr {
    background-color: # f5f5f5 !important;
    
    }
    

    2- Try a sticky sidebar plugin 🙂
    3- Try

    COPY CODE
    
    .kleo-main-header.header-normal.header-scrolled a {
        color: white !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 🙂

     Laura
    Moderator

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

    COPY CODE
    
    .item-desc a {
        word-break: break-word !important;
    }
    

    For the backend i can’t edit it with css

    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 #188883
     Laura
    Moderator
    Not marked as solution
    in reply to: Tag order #188880
     Laura
    Moderator
    Not marked as solution
    in reply to: Adjust woocommerce search box #188836
     Laura
    Moderator

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

    COPY CODE
    
    .woocommerce-product-search button {
        float: right;
        background: none !important;
        border: 1px solid #e5e5e5;
        border-radius: 10%;
    }
    
    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 🙂

     Laura
    Moderator

    Hello, logged in, please add this to style.css of child theme to fix the group description

    COPY CODE
    
    div#item-meta p {
        height: auto !important;
        display: block !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: Video Background #188719
     Laura
    Moderator

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

    COPY CODE
    
    .video-wrap video {
        min-height: 100%;
        min-width: 100%;
        width: 1200px !important;
        height: 100% !important;
        margin-top: -10%;
    }
    div#mep_0 {
        min-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

    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 windows is out of screen #188187
     Laura
    Moderator

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

    COPY CODE
    
    @media only screen and (max-width: 767px) {
    div#login_panel {
        width: 100% !important;
        margin-right: -50%;
    }
    }
    
    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: Spacing #188174
     Laura
    Moderator
    Not marked as solution
    in reply to: changing text color for kleo post and kleo post carousel #188022
     Laura
    Moderator

    Try by adding this to style.css of child theme

    COPY CODE
    
    .article-content p {
        color: #818181 !important;
    }
    h3.post-title.entry-title a {
        color: white !important;
    }
    h3 em:hover {
        color: yellow !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: No bottom footer in theme, how to add? #187927
     Laura
    Moderator

    Hello, please try by adding this to footer.php because the wordpress editor can’t connect to your ftp either

    COPY CODE
    
    <span>©2018 Copyright - Powered by KLEO Theme<a href="#">A LINK HERE</a></span>
    
    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: Users can’t create groups or forums in Buddypress #187919
     Laura
    Moderator

    Added it 🙂 The link should be at Profile > Groups now, you can adjust the position by adding this to style.css of child theme

    COPY CODE
    
    .bp-user a.group-create.no-ajax {
        margin-top: -0.16% !important;
        position: absolute !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: translations-corrections #187896
     Laura
    Moderator

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

    COPY CODE
    
    .form-search, .form-header {
        background: #e64533 !important;
    }
    .form-header {
        border-left: 10px solid rgb(237, 68, 49) !important;
        border-top: 10px solid rgb(237, 68, 49) !important;
        border-right: 10px solid rgb(237, 68, 49) !important;
    }
    .form-search {
        border-left: 10px solid rgb(237, 68, 49) !important;
        border-right: 10px solid rgb(237, 68, 49) !important;
    }
    .form-footer {
        border-bottom: rgb(237, 68, 49) !important;
    }
    span.notch {
        display: none !important;
    }
    .form-search.custom input[type="text"], .form-search.custom input[type="password"] {
        border: 1px solid #e64533 !important;
    }
    .form-search.custom div.custom.dropdown a.current, .form-search.custom input[type="text"], .form-search.custom input[type="password"], .form-search.custom select {
        background-color: #f3f1f1 !important;
        color: red !important;
    }
    .button:hover, .button:focus, .form-search .button, .form-search .button:hover, .form-search .button:focus, .wpcf7-submit:focus, .wpcf7-submit:hover, #rtmedia-add-media-button-post-update:hover, #rt_media_comment_submit:hover, .rtmedia-container input[type="submit"]:hover {
        color: #ffffff;
        background-color: #bb3829 !important;
        border: 1px solid #bb3829 !important;
    }
    

    For the other fields you would need to hire a developer to add custom restrictions 🙂

    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 text color for kleo post and kleo post carousel #187780
     Laura
    Moderator

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

    COPY CODE
    
    h3.post-title.entry-title a {
        color: white !important;
    }
    .entry-summary p {
        color: #c1c1c1 !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: How to change header color in Buddypress #187778
     Laura
    Moderator

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

    COPY CODE
    
    .hr-title.hr-full.hr-double abbr {
        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: “Load more” button #187456
     Laura
    Moderator
    Not marked as solution
    in reply to: Post Featured Image Size #187355
     Laura
    Moderator

    Hello, try by adding this to style.css of child theme and then change the size

    COPY CODE
    
    .article-media img {
        max-height: 250px !important;
        max-width: 250px !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: plugin error #187329
     Laura
    Moderator
    Not marked as solution
    in reply to: Change widget area color #187325
     Laura
    Moderator

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

    COPY CODE
    
    div#footer {
        background: #009999 !important;
    }
    div#footer h4 {
        color: white !important;
    }
    div#footer span {
        color: white !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: Buddypress #187223
     Laura
    Moderator

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

    COPY CODE
    
    .xprofile div#object-nav {
        display: none !important;
    }
    

    This should hide the profile menu from profile page, but for the rest you would need to hire a developer

    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: activity plus-resize images #187221
     Laura
    Moderator

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

    COPY CODE
    
    .activity-inner img {
        max-width: 100% !important;
        width: 100% !important;
        height: 100% !important;
    }
    .bpfb_link_preview_container {
        width: 300px !important;
        height: 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: AMP PAGE BOTTOM #187214
     Laura
    Moderator
    Not marked as solution
    in reply to: collapse icon #187116
     Laura
    Moderator

    Hello, should be done, i added this to your style.css of child theme

    COPY CODE
    
    span.sidemenu-icon {
        background-image: url(http://www.windroidanswers.com/wp-content/uploads/2018/01/collapse-icon-SeventhQueen-Support-Google-Chrome_2_burned.png) !important;
        width: 20px;
        height: 20px;
        background-size: cover !important;
        font-size: 0px;
        color: transparent !important;
    }
    span.sidemenu-icon span {
        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 🙂

Viewing 40 posts - 401 through 440 (of 2,796 total)

Log in with your credentials

Forgot your details?