Forum Replies Created

Viewing 40 posts - 2,241 through 2,280 (of 2,796 total)
  • Author
  • in reply to: vector graphics #85017
     Laura
    Moderator

    Hello, maybe try with

    COPY CODE
    
    #header {
        width: 1630px;
        margin-left: -26%;
    }
    
    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 move the main menu #84998
     Laura
    Moderator

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

    COPY CODE
    
    ul#menu-menu-principal {
        margin-top: 15%;
        margin-left: -55%;
    }
    
    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: Styling (footer-color border-top) #84992
     Laura
    Moderator

    Hello, this should work 🙂

    COPY CODE
    
    div#footer {
        border-top: 5px solid;
    }
    
    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: blank block at top of page #84980
     Laura
    Moderator

    Hello, please try this instead:

    COPY CODE
    
    body.home-page .article-media.kleo-banner-slider {
        display: none !important;
    }
    

    If no change, try by clearing browser cache or website cache 🙂

    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: Private message #84977
     Laura
    Moderator

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

    COPY CODE
    
    add_action('user_register', 'kleo_pmpro_default_level');
    function kleo_pmpro_default_level($user_id) {
    	pmpro_changeMembershipLevel(1,$user_id);
    }
    

    Change the 1 for your default level id

    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: top right login/logout & profile buttons #84973
     Laura
    Moderator

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

    COPY CODE
    
    li.header-login-button {
        width: 50%;
    }
    li.header-register-button {
        width: 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: Add profile options in sidebar #84730
     Laura
    Moderator

    Hello, please try by replacing the bp-custom.php with

    COPY CODE
    
    <?php
    // hacks and mods will go here
    
    if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) )
    define( ‘BP_AVATAR_THUMB_WIDTH’, 150 ); //change this with your desired thumb width
    
    if ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) )
    define( ‘BP_AVATAR_THUMB_HEIGHT’, 150 ); //change this with your desired thumb height
    
    if ( !defined( ‘BP_AVATAR_FULL_WIDTH’ ) )
    define( ‘BP_AVATAR_FULL_WIDTH’, 260 ); //change this with your desired full size,weel I changed it to 260 :)
    
    if ( !defined( ‘BP_AVATAR_FULL_HEIGHT’ ) )
    define( ‘BP_AVATAR_FULL_HEIGHT’, 260 ); //change this to default height for full avatar
    
    define ( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 640 );
    define ( ‘BP_AVATAR_ORIGINAL_MAX_FILESIZE’, $max_in_kb );
    ?>
    
    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: Creating Admin Users without profiles #84707
     Laura
    Moderator

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

    COPY CODE
    
    // Remove admin from the member directory
    function bpdev_exclude_users($qs=false,$object=false){
        
        $excluded_user='1'; // Id's to remove, separated by comma
    	
        if($object != 'members' && $object != 'friends')// hide admin to members & friends 
        return $qs;
    	
        $args=wp_parse_args($qs);
     
        if(!empty($args['user_id']))
        return $qs;	
    	
        if(!empty($args['exclude']))
    		$args['exclude'] = $args['exclude'].','.$excluded_user;
        else
    		$args['exclude'] = $excluded_user;
    	
        $qs = build_query($args);
     
        return $qs;
    	
    }
    add_action('bp_ajax_querystring','bpdev_exclude_users',20,2);
     
    // once admin is removed, we must recount the members !
    function bpfr_hide_get_total_filter($count){
        return $count-1;
    }
    add_filter('bp_get_total_member_count','bpfr_hide_get_total_filter');
    
    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: Sidebar widgets not displaying row and column styling #84703
     Laura
    Moderator

    Hello, i see the issue, you added a style to the widgets but not a global css, try this:
    Edit your page and edit each section, in Extra class, add this: widget-css
    Now save and go to style.css of child theme, then paste this:

    COPY CODE
    
    .widget-css .vc_row.wpb_row.vc_inner.vc_row-fluid {
        margin-right: 15px !important;
        margin-left: 15px !important;
        border-top-width: 1px !important;
        border-right-width: 1px !important;
        border-bottom-width: 1px !important;
        border-left-width: 1px !important;
        padding-top: 25px !important;
        padding-right: 35px !important;
        padding-bottom: 25px !important;
        padding-left: 35px !important;
        border-left-color: #e5e5e5 !important;
        border-left-style: solid !important;
        border-right-color: #e5e5e5 !important;
        border-right-style: solid !important;
        border-top-color: #e5e5e5 !important;
        border-top-style: solid !important;
        border-bottom-color: #e5e5e5 !important;
        border-bottom-style: solid !important;
        border-radius: 10px !important;
    }
    .widget-css .kleo_text_column {
        margin-bottom: 30px !important;
        height: 232px !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: few heart icon questions ! #84561
     Laura
    Moderator

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

    COPY CODE
    
    add_action('after_setup_theme','kleo_my_hearts_actions');
     
    function kleo_my_hearts_actions() 
    {
       /* disable matching on member profile */
        remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match');      
     
        /* Replace the heart over images */
        add_filter('kleo_img_rounded_icon', 'my_custom_icon');
     
        /* Replace the heart from register modal */
        add_filter('kleo_register_button_icon', 'my_custom_icon_register');
     
        /* Replace the heart from About us widget */
        add_filter('kleo_widget_aboutus_icon', 'my_custom_icon_about_widget');
    }
     
    /* Replace the heart with a camera icon function */
    function my_custom_icon () {
        return 'camera';
    }
     
    /* Replace the heart from register modal with a user icon function */
    function my_custom_icon_register () {
        return 'user';
    }
    /* Replace the heart from about us widget with a user icon function */
    function my_custom_icon_about_widget () {
        return 'user';
    }
     
    add_action('after_setup_theme','kleo_remove_actions');
    /**
     * Override existing actions
     * Use these functions to replace/remove existing actions
     * @since Sweetdate 1.3
    */ 
    function kleo_remove_actions() 
    {
       /* For example uncomment the line bellow to disable matching on member profile */
        remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match');      
    }
    
    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: bbpress CSS help #84552
     Laura
    Moderator

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

    COPY CODE
    
    .bbp-search-form {
        display: none;
    }
    span.bbp-topic-started-by {
        margin-top: 0.5%;
        position: absolute;
        margin-left: -65px;
    }
    

    For the avatar, its better to not move it because would mess with mobile view

    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: blank block at top of page #84539
     Laura
    Moderator

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

    COPY CODE
    
    body.home-page .article-media.kleo-banner-slider {
        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: Remove 'My Account' button from 'Order Details' Page #84538
     Laura
    Moderator

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

    COPY CODE
    
    a.button {
        display: none !important;
    }
    table.shop_table.shop_table_responsive.my_account_orders a {
        display: inline-block !important;
    }
    p.form-row.form-row-wide a {
        display: none;
    }
    

    Let me know if that 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: Logo will not change size #84412
     Laura
    Moderator

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

    COPY CODE
    
    img#logo_img {
        width: 150px;
    }
    
    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: Large space between header and page heading #84278
     Laura
    Moderator

    Hello, please add this to style.css of child theme, this should do it

    COPY CODE
    
    div#search-bar {
        background: transparent !important;
    }
    

    This is everything i can do for you right now, we can only help with small modifications and i already did more than that.

    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: copyright text on center #84200
     Laura
    Moderator

    Hello, this should do it, please add it to style.css of child theme

    COPY CODE
    
    div#footer p {
        text-align: center;
    }
    
    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: replace mobile menu icon #84197
     Laura
    Moderator

    Hello, yes, you can do it by adding this to style.css of child theme then adding the url of the image

    COPY CODE
    
    span.icon-bar {
        display: none !important;
    }
    button.navbar-toggle {
        background-image: url('IMAGE URL');
        width: 30px;
        height: 30px;
    }
    
    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 matching system? #84196
     Laura
    Moderator

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

    COPY CODE
    
    add_action('after_setup_theme','kleo_remove_actions');
    /**
     * Override existing actions
     * Use these functions to replace/remove existing actions
     * @since Sweetdate 1.3
    */ 
    function kleo_remove_actions() 
    {
    remove_action('kleo_bp_before_profile_name', 'kleo_bp_compatibility_match');      
    }
    
    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: Navigation under banner #84115
     Laura
    Moderator

    Helo, this should do it, please add it to style.css of child theme

    COPY CODE
    
    @media (max-width: 991px) {
    .kleo-main-header, .navbar-transparent .kleo-main-header, .kleo-navbar-fixed.navbar-transparent #header {
        background-color: #FFF;
    }
    .navbar-transparent .navbar-toggle .icon-bar {
        background-color: #000!important;
    }
    ul#menu-home-menu a {
        color: black;
    }
    }
    
    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 wishlist icon color #84051
     Laura
    Moderator

    Hello, this will do it, please add it to child theme style.css

    COPY CODE
    
    .yith-wcwl-wishlistaddedbrowse a:before {
        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: Add profile options in sidebar #84050
     Laura
    Moderator

    Here it is, add it to style.css but you will need to edit buddypress default image size following this tutorial 🙂

    COPY CODE
    
    li.bmbl-avatar img {
        width: 150px !important;
        height: 150px;
    }
    

    https://codex.buddypress.org/themes/guides/customizing-buddypress-avatars/

    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: Issues with the Image Gallery #83925
     Laura
    Moderator

    Hello, about the gap, try by adding this to the page CSS in visual composer

    COPY CODE
    
    span.hover-element {
        width: 200px;
    }
    

    Its the hover element width

    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: Icon Types #83797
     Laura
    Moderator

    Hello,please add this to style.css it will disable the border of the icons on hover

    COPY CODE
    
    span.feature-icon.el-appear:hover {
        border: none !important;
    }
    

    This will change their color:

    COPY CODE
    
    span.feature-icon.el-appear:before {
        color: #777777;
    }
    
    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 header and link color #83662
     Laura
    Moderator

    Hello, could you explain a bit more the buddypress issue? It’s very weird that it locked you outside the site, what did you do exactly before that happened?
    About the other issue, what do you mean by “make the page header shown along with the breadcrumb”
    For the menu item hover, maybe try adding this to your style.css in child theme

    COPY CODE
    
    .collapse.navbar-collapse.nav-collapse a:hover {
        color: red;
    }
    
    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 user's own profile section #83657
     Laura
    Moderator

    Hello, please try the following:
    Copy header.php of main theme to child theme, edit it and add the following just below <head>

    COPY CODE
    
    <?php if ( bp_is_my_profile() ) {  ?>
    <style  type="text/css" media="screen">
    #profile {
        display: none !important;
    }
    </style>
    <?php } ?>
    
    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: Post Images #83647
     Laura
    Moderator

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

    COPY CODE
    
    @media (max-width: 991px) {
    .posts-listing.responsive-cols.kleo-masonry.per-row-4.with-meta.masonry-listing article {
        padding: 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: Accordion in product page #83644
     Laura
    Moderator

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

    COPY CODE
    
    .single-product .collapse {
        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: Post Images #83486
     Laura
    Moderator

    Hello, you could add a custom class to the element, then use a mobile only css with padding 0
    For example:
    the element class would be mobile-padding
    then for mobile only effect:

    COPY CODE
    
    @media (max-width: 991px) {
    .mobile-padding {
    padding: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: Hide shipping calculater on product page #83469
     Laura
    Moderator

    Hello, please add this to style.css

    COPY CODE
    
    div#accordion-woo .panel:nth-child(2n) {
        display: none;
    }
    

    This should hide the “poštovné” 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: Firefox issues #83443
     Laura
    Moderator

    Hello, i have tested both firefox and google chrome and they seem to work fine, maybe you have a bad setting in firefox that could show it like that? Did you try clearing cache?

    I do see the logo issue, that can be solved if you add this to style.css 🙂

    COPY CODE
    
    @-moz-document url-prefix() {
    h1#logo {
        width: 200px !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 🙂

    Attachments:
    You must be logged in to view attached files.
     Laura
    Moderator

    Hello, this should hide the read more

    COPY CODE
    
    span.muted.pull-right {
        display: none;
    }
    

    Please add it to the style.css
    For the other issues, might be related to the custom post type

    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: Add Google Custom Search to theme header #83277
     Laura
    Moderator

    Hello, please add this to style.css

    COPY CODE
    
    li#nav-menu-item-search {
        display: none;
    }
    

    This will hide the theme search as you already have the google one added to your menu, sadly to style it as the theme requires some extra development

    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: Images aren’t coming out the correct sizes. #83217
     Laura
    Moderator

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

    COPY CODE
    
    .woocommerce ul.products li.product .product-transition-single {
        height: 400px;
    }
    

    To make the image appear fine, make them all the same size, and in the center of a big white background, this way all should look the same. That code will make the box the same size

    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: Too much items in the menu #83141
     Laura
    Moderator

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

    COPY CODE
    
    @media screen and (min-device-width: 1000px) and (max-device-width: 1200px) { 
    .collapse.navbar-collapse.nav-collapse {
        margin-top: -11.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 🙂

    in reply to: Large space between header and page heading #83084
     Laura
    Moderator

    Hello, done with

    COPY CODE
    
    .kleo-page.wide-style {
        background-image: url('http://singlehoneys.com/wp-content/uploads/2015/10/zen-865022_1280.jpg') !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
        background-attachment: fixed !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 Header #83076
     Laura
    Moderator

    Hello, done with :

    COPY CODE
    
    .bp-user #buddypress #item-header-avatar {
        margin-top: -20px !important;
        position: absolute !important;
        margin-left: -45% !important;
    }
    .buddypress div#item-header {
        padding-top: 140px !important;
        padding-bottom: 50px !important;
    }
    

    Thats all i can do right now 🙂

    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: Integrating Aweber Into Registration Page #83073
     Laura
    Moderator

    Hello, sorry i thought was Sweetdate theme as this topic was in that category,
    For KLEO, its in buddypress > members > register.php
    copy that file and paste it in child theme ( create the same folders )
    Then replace content with

    COPY CODE
    
    <div id="buddypress">
    
    	<?php do_action( 'bp_before_register_page' ); ?>
    
    	<div class="page" id="register-page">
    
    		<?php echo do_shortcode( 'GRAVITY-FORM-SHORTCODE-HERE' ); ?>
    
    	</div>
    
    	<?php do_action( 'bp_after_register_page' ); ?>
    
    </div><!-- #buddypress -->
    

    And add your gravity form shortcode 🙂

    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: Header Logo Size Limitation #83059
     Laura
    Moderator

    Hello, you could try to add this to quick css

    COPY CODE
    
    .revslider-head.absolute-head .form-wrapper {
        margin-top: 238px !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: KLEO Nav – Onclick #83052
     Laura
    Moderator

    Hello, that could be done by css:

    COPY CODE
    
    ul#menu-top li:onclick {
        background-color: red;
        color: white;
    }
    
    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: WHITE SCREEN – URGENT #83044
     Laura
    Moderator

    Hello, please try by adding this to your wp-config.php below “That’s all….”

    COPY CODE
    
    define('WP_MEMORY_LIMIT', '296M');
    
    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 - 2,241 through 2,280 (of 2,796 total)

Log in with your credentials

Forgot your details?