Forum Replies Created

Viewing 40 posts - 1,201 through 1,240 (of 2,796 total)
  • Author
  • in reply to: Media Gallery bugged #151849
     Laura
    Moderator
    Not marked as solution
    in reply to: Import members #151840
     Laura
    Moderator

    Hello, please calm down, i am trying to help you, and we wont resolve things like this, we need to find the source of the issue, and fix it, am here to help you.

    Could you enable debug so we can see error logs?

    •  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: Please help me import specific demo and change font #151833
     Laura
    Moderator
    Not marked as solution
    in reply to: Frontend login not working #151825
     Laura
    Moderator
    Not marked as solution
    in reply to: Duplicate Featured Image #151822
     Laura
    Moderator

    Hello, of course, i am so sorry about that, tried to add the code but it didnt work, can you add it back? i will delete the duplicated image
    To delete the code, edit the code i added at functions.php of child theme.
    I added

    COPY CODE
    
    add_action('kleo_before_main', 'sq7rdu_show_featured_before_content');
    function sq7rdu_show_featured_before_content() {
        if (is_single()) {
            if (has_post_thumbnail()) {
                echo '<div class="fullwidth-image-before-content">';
                echo the_post_thumbnail('full');
                echo '</div>';
            }
        }
    }
    
    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 search results colors in top level menu? #151817
     Laura
    Moderator

    Hello, sorry for the delay, please try by adding this to style.css of child theme 🙂

    COPY CODE
    
    .kleo-ajax-part h4 {
        color: white !important;
    }
    .kleo_ajax_entry.format- 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: Hide title portfolio (pages) #151799
     Laura
    Moderator
    Not marked as solution
    in reply to: Switch between Boxed style and full-width #151698
     Laura
    Moderator

    Hello, to have register page full width just add this to style.css of child theme

    COPY CODE
    
    .registration .kleo-page.boxed-style {
        max-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: Need help for extend profile buttons! #151652
     Laura
    Moderator

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

    COPY CODE
    
    div#item-buttons a {
        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: Buddypress – Sort Member directory alphabetical #151650
     Laura
    Moderator

    Hello, here is the code

    COPY CODE
    
    < ?php
    
    /**
     * BuddyPress - Members Loop
     *
     * Querystring is set via AJAX in _inc/ajax.php - bp_legacy_theme_object_filter()
     *
     * @package BuddyPress
     * @subpackage bp-legacy
     */
    
    ?>
    
    < ?php do_action( 'bp_before_members_loop' ); ?>
    
    < ?php
    if ( bp_ajax_querystring( 'members' ) == "")
    {
    $queryString = "type=alphabetical&action=alphabetical&page=1";
    }
    else {
    $queryString = bp_ajax_querystring( 'members' );
    }
    
     if ( bp_has_members(  $queryString. '&per_page='.sq_option('bp_members_perpage', 24)) ) : ?>
    
    	<div class="pagination">
    
    		<div class="pag-count">
    
    			< ?php bp_members_pagination_count(); ?>
    
    		</div>
    
    		<div class="pagination-links">
    
    			< ?php bp_members_pagination_links(); ?>
    
    		</div>
    
    	</div>
    
    	< ?php do_action( 'bp_before_directory_members_list' ); ?>
    
    	<ul id="members-list" class="item-list row kleo-isotope masonry">
    
    	< ?php while ( bp_members() ) : bp_the_member(); ?>
    
    		<li class="kleo-masonry-item">
        	<div class="member-inner-list animated animate-when-almost-visible bottom-to-top">
            <div class="item-avatar rounded">
              <a>">< ?php bp_member_avatar(); ?></a>
              < ?php do_action('bp_member_online_status', bp_get_member_user_id()); ?>
            </div>
      
            <div class="item">
              <div class="item-title">
                <a>">< ?php bp_member_name(); ?></a>
              </div>
              <div class="item-meta"><span class="activity">< ?php bp_member_last_active(); ?></span></div>
              
    		< ? /* LORNDAL RAUS <div class="item-meta"><span class="activity">< ?php bp_the_profile_field_name(); ?></span></div> */ ?>
    		
            < ? /* LORNDAL RAUS <span class="update"> < ?php bp_member_latest_update(); ?><span class="update">
              < ?php endif; */ ?>
      		< ?php /* do_action( 'bp_directory_members_item' ); */ ?>
      
              <span class="item-meta"><span class="activity"> < ?php
               /***
                * If you want to show specific profile fields here you can,
                * but it'll add an extra query for each member in the loop
                * (only one regardless of the number of fields you show):
                *
                * bp_member_profile_data( 'field=the field name' );
                */
              bp_member_profile_data( 'field=Current city');?>,  < ?php bp_member_profile_data( 'field=Current country' );
              ?></span></span><br /><br />
            </span></div>
      
            <div class="action">
      
              < ?php do_action( 'bp_directory_members_actions' ); ?>
      
            </div>
    
    			<!--end member-inner-list-->
    		</li>
    
    	< ?php endwhile; ?>
    
    	</ul>
    
    	< ?php do_action( 'bp_after_directory_members_list' ); ?>
    
    	< ?php bp_member_hidden_fields(); ?>
    
    	<div class="pagination">
    
    		<div class="pag-count">
    
    			< ?php bp_members_pagination_count(); ?>
    
    		</div>
    
    		<div class="pagination-links">
    
    			< ?php bp_members_pagination_links(); ?>
    
    		</div>
    
    	</div>
    
    < ?php else: ?>
    
    	<div class="info">
    		<p>< ?php _e( "Sorry, no members were found.", 'buddypress' ); ?></p>
    	</div>
    
    < ?php endif; ?>
    
    < ?php do_action( 'bp_after_members_loop' ); ?>
    
    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 plugin #151505
     Laura
    Moderator

    Hello, well, as i cant access your site, i will try to explain how to do this:
    At your website, right click the icon you want to change, (using google chrome) and click Inspect Element
    You should see something like < i class=”icon……..”>
    Copy what its inside the class “copy this”
    And go to style.css of child theme
    Add this

    COPY CODE
    
    i.THE CLASS HERE:before {
        content: "\e817" !important;
    }
    

    The content code is the icon, you can find icon codes here https://icomoon.io/app/#/select (they may not be the same)

    For the fisheye icon use this

    COPY CODE
    
    i.icon-panorama-fisheye:before {
        content: "\e902" !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: Tabs/Pills font color change #151337
     Laura
    Moderator

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

    COPY CODE
    
    ul.nav.nav-pills.responsive-pills.pills-style-square.tabs-centered a {
        color: white;
    }
    .active a {
        color: #0c0844 !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 Font Size in Main Menu and Logo Size #151333
     Laura
    Moderator
    Not marked as solution
    in reply to: hide breadcrumb for product categories #151311
     Laura
    Moderator

    Hello, try

    COPY CODE
    
    .tax-product_cat section.container-wrap.main-title.alternate-color.border-bottom {
        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: Place logo in upper left corner of news feed #151305
     Laura
    Moderator

    Hello, yes
    to center it try

    COPY CODE
    
    .gd-fe-image img{
        margin: 0 auto !important;
    }
    

    or

    COPY CODE
    
    .gd-fe-image {
        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: Home page menu and other options not working #151213
     Laura
    Moderator

    Hello, for 1, use this
    https://codex.buddypress.org/getting-started/guides/change-members-profile-landing-tab/
    and this at style.css

    COPY CODE
    
    li#activity-personal-li {
        display: none !important;
    }
    

    2- KLEO LOGIN MODAL

    COPY CODE
    
    div#kleo-login-modal {
        background: red;
    }
    .kleo-pop-title-wrap.main-color {
        background: red;
        color: white;
    }
    

    3-

    COPY CODE
    
    .profile legend {
        font-weight: bold !important;
        color: #1e73be !important;
    }
    

    At the profile, it goes to my profile, not my account

    Email or username login https://es.wordpress.org/plugins/login-with-username-or-email/
    Notification diamond color

    COPY CODE
    
    .kleo-toggle-submenu:before {
        background-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: change TopBar #151025
     Laura
    Moderator

    Hello, done.
    Created a new folder at your child theme “page-parts” and added general-header-section.php , edited it to add your text, then added this to style.css

    COPY CODE
    
    .top-bar {
        float: right;
        color: white;
        font-weight: bold;
    }
    
    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: Transparent drop down menu color #151023
     Laura
    Moderator

    Hello, at Pages you will see Home Register, that is the register landing page demo, for buddypress, you cant edit that page, as its created dynamically with php, so you need to edit the php file with the help of a developer
    The file is kleo/buddypress/members/register.php
    But edit it at the child theme ( copy the folder names and paste the file inside )

    For the menu, try moving it using

    COPY CODE
    
    ul#menu-main-menu {
        margin-left: -10% !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: Forum Issues and Forum Text colors #151019
     Laura
    Moderator

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

    COPY CODE
    
    .ed_button {
        color: white !important;
    }
    textarea#whats-new {
        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: Login page button #151004
     Laura
    Moderator

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

    COPY CODE
    
    button.btn.btn-lg.btn-default.btn-block.login-button {
        background: #ce1834 !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: Home page menu and other options not working #150976
     Laura
    Moderator

    Hello, if you want to hide the members activity page, you can disable activity at Settings > Buddypress, but if you only want to hide it at the member profile, then you do it using this css

    COPY CODE
    
    li#activity-personal-li {
        display: none;
    }
    

    Add it to style.css of child theme

    For the login popup, what kind of changes do you want to do? 🙂

    Date of birth text, add this to style.css of child theme

    COPY CODE
    
    .profile legend {
        font-weight: bold;
        color: #1e73be;
    }
    

    I see the bio part as an area of text so i guess you fixed that one?
    Top bar background color css

    COPY CODE
    
    .header-color.social-header {
        background-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: Place logo in upper left corner of news feed #150867
     Laura
    Moderator

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

    COPY CODE
    
    .gd-fe-image {
        width: 160px !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: Cannot change menu to black bg and white letters #150862
     Laura
    Moderator

    Hello, let me know if you like it, i added this to style.css of child theme

    COPY CODE
    
    .kleo-main-header.header-normal {
        color: white !important;
        background: black !important;
    }
    .primary-menu a {
        color: white !important;
    }
    .header-color a {
        color: white !important;
    }
    

    And this to home page css

    COPY CODE
    
    .primary-menu a {
        color: white;
    }
    .kleo-main-header.header-normal {
        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 🙂

     Laura
    Moderator

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

    COPY CODE
    
    .vc_column-inner p {
        font-size: 24px !important;
    }
    

    But, at the text element, you can change the size also

    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: Duplicate Featured Image #150846
     Laura
    Moderator

    Hello, sorry for the late reply, what do you think about this idea?
    There is a plugin that forces users to complete their profile once they register, so, after they login, they would be redirected to their profile page to fill their fields.
    The plugin is:
    https://wordpress.org/plugins/bp-force-profile/

    To change the create an account link, follow these steps:
    Go to wp-content/themes/sweetdate/page-parts and copy the file general-login-modal.php
    Now go to wp-content/themes/sweetdate-child/ create a folder and name it page-parts and then paste general-login-modal.php there.

    Edit general-login-modal.php and find:

    COPY CODE
    
    <a href="#"><?php _e("CREATE NEW ACCOUNT", 'kleo_framework');?></a>
    

    Replace with

    COPY CODE
    
    <a href="URL TO YOUR MEMBERSHIPS LEVEL PAGE"><?php _e("CREATE NEW ACCOUNT", 'kleo_framework');?></a>
    

    And add the url

    Again, i am very sorry for the late reply, hope this helps
    Let me know 🙂

    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: Please help me import specific demo and change font #150839
     Laura
    Moderator
    Not marked as solution
    in reply to: Member Carousel #150719
     Laura
    Moderator

    Hello, here, try this css code

    COPY CODE
    
    .item-avatar.kleo-rounded {
        width: 150px;
        height: 150px;
    }
    

    Add to style.css of child theme
    If it does not work, try

    COPY CODE
    
    .item-avatar.kleo-rounded {
        width: 150px !important;
        height: 150px !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: Size of the slider + preview #150717
     Laura
    Moderator
    Not marked as solution
    in reply to: New Account Modal Redirect #150710
     Laura
    Moderator

    Hello, go to wp-contents/themes/sweetdate/page-parts and copy general-register-modal.php
    Now go to wp-contents/themes/sweetdate-child , createa new foler, name it page-parts, paste the file general-register-modal.php inside, edit it.

    Replace

    COPY CODE
    
      <form id="register_form" action="<?php if (function_exists('bp_is_active')) bp_signup_page(); else echo get_bloginfo('url')."/wp-login.php?action=register"; ?>"
    

    With

    COPY CODE
    
      <form id="register_form" action="YOUR LEVELS PAGE URL"
    

    Save
    Let me know if it works 🙂

    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: Size logo #150709
     Laura
    Moderator

    Hello, try using

    COPY CODE
    
    .navbar-header .logo {
        float: none !important;
        margin: 0 auto;
    }
    
    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 Options / Settings #150670
     Laura
    Moderator
    Not marked as solution
    in reply to: Border CSS for Buddypress components #150621
     Laura
    Moderator

    Hello,sorry for the late reply, here is the css

    COPY CODE
    
    .nav-tabs {
        border-bottom: none !important;
    }
    .member-inner-list {
        border: 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: [kleo_portfolio title_style=”hover” vs “normal” #150458
     Laura
    Moderator
    Not marked as solution
    in reply to: Transparent drop down menu color #150265
     Laura
    Moderator

    Hello, sorry for the delay, will check each issue and try to resolve it as soon as possible.
    For the logo size, add this to style.css of child theme and edit it as you wish 🙂

    COPY CODE
    
    img#logo_img {
        max-height: 300px !important;
        width: 400px;
    }
    .logo {
        top: 10px;
    }
    

    For the sticky logo

    COPY CODE
    
    .header-scrolled .logo {
        width: 198px !important;
        top: 0px !important;
    }
    .header-scrolled .logo img {
        height: 58px !important;
    }
    

    Toggle profile header button

    COPY CODE
    
    span.toggle-header {
        top: 25% !important;
    }
    

    About mycred, how do you want it to look like?

    Hide products categories at single product page

    COPY CODE
    
    span.posted_in {
        display: none !important;
    }
    

    Sadly i do not know a way to remove the product description of your old theme
    Let me know if you need anything else 🙂

    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 menu Plus signs are transpartent #150264
     Laura
    Moderator

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

    COPY CODE
    
    @media (max-width: 991px) {
    #header .navbar-nav li .caret:after {
        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: Reinstall #150262
     Laura
    Moderator

    Hello, for the search bar use this

    COPY CODE
    
    form#ajax_searchform input {
        color: black !important;
    }
    

    And for the logo this

    COPY CODE
    
    @media (max-width: 991px) {
    .header-centered .navbar-header .logo {
        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: [kleo_portfolio title_style=”hover” vs “normal” #150175
     Laura
    Moderator
    Not marked as solution
    in reply to: How to add padding to an image #150168
     Laura
    Moderator

    Hello, its very easy, at the element where the image is, add a class ( you should see a class input at the element options ) lets say your class is “images”
    and then add this to style.css of child theme

    COPY CODE
    
    .images {
    padding:10px;
    }
    

    If you have an element that has text and images you may use this instead

    COPY CODE
    
    .images img {
    padding:10px;
    }
    

    Hope 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: How to customise archive for category page? #150072
     Laura
    Moderator

    Hello, i’m sorry for the late reply, here is the code for category title

    COPY CODE
    
    .category h1.page-title {
        display: none;
    }
    

    Top bar

    COPY CODE
    
    .top-bar {
        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: How to hide a specific category link #149826
     Laura
    Moderator

    Hello,i see, then there is no other way of doing that.Try

    COPY CODE
    
    small.meta-category a:last-child {
        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 - 1,201 through 1,240 (of 2,796 total)

Log in with your credentials

Forgot your details?