Forum Replies Created

Viewing 40 posts - 1,921 through 1,960 (of 2,796 total)
  • Author
  • in reply to: Kleo login popup edit #109511
     Laura
    Moderator

    Hello, you can change the background color and corner border using css but for the logo you will need to edit theme files

    For the background and corners just add this css to style.css of child theme and edit as you wish

    COPY CODE
    
    div#kleo-login-modal {
        background: grey !important;
    }
    .kleo-pop-title-wrap.main-color {
        background: grey;
        color: white !important;
        border-radius: 20px;
    }
    div#kleo-login-modal {
        border-radius: 20px !important;
    }
    

    For the logo you will need to edit general-popups.php at page-parts folder

    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 the live chat form background color? #109453
     Laura
    Moderator

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

    COPY CODE
    
    .wcContainer .wcControls .wcInputContainer .wcInput {
        background-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: Uber Menu second menu position #109368
     Laura
    Moderator

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

    COPY CODE
    
    nav#ubermenu-main-24-primary {
        margin: 1% auto !important;
        float: none !important;
        width: 60%;
    }
    

    🙂

    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 Groups Activity mobile view issue #109325
     Laura
    Moderator

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

    COPY CODE
    
    @media screen and (max-width: 782px) {
    #buddypress form#whats-new-form p.activity-greeting {
        line-height: 1.4;
    }
    }
    
    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: Button text bold #109020
     Laura
    Moderator

    Hello, add this 🙂

    COPY CODE
    
    a.vc_general.vc_btn3.vc_btn3-size-lg.vc_btn3-shape-rounded.vc_btn3-style-custom.vc_btn3-icon-left {
        font-weight: bolder;
    }
    
    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: Disabling featured image in posts #108942
     Laura
    Moderator

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

    COPY CODE
    
    .single-post .article-media 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: Activity Feed and other general questions #108913
     Laura
    Moderator

    Hello, 🙂
    For 1) Please check https://buddypress.org/support/topic/filtering-out-activity-stream-stuff/
    2) That is a bit difficult and will require a developer to do it for you, you will need to add custom codes and may need to edit plugin files.
    3) Which ones do you want to delete and which ones do you want to add?
    4) Just add this to style.css at the child theme

    COPY CODE
    
    ul.responsive-tabs a:before {
        color: green !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: Button text bold #108621
     Laura
    Moderator

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

    COPY CODE
    
    li#menu-item-3598 a span {
        font-weight: 800;
    }
    

    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: control what it say on activity feed #108609
     Laura
    Moderator

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

    COPY CODE
    
    // Remove (hide) various activities from streams.
    function my_hidden_activities($a, $activities) {
    //if admin we want to know
    //if (is_site_admin())
    //	return $activities;
    
    $nothanks = array(“new_member”, “friendship_created”);
    
    foreach ($activities->activities as $key => $activity) {
    if (in_array($activity->type, $nothanks, true)) {
    unset($activities->activities[$key]);
    $activities->activity_count = $activities->activity_count-1;
    $activities->total_activity_count = $activities->total_activity_count-1;
    $activities->pag_num = $activities->pag_num -1;
    }
    }
    
    // Renumber the array keys to account for missing items.
    $activities_new = array_values( $activities->activities );
    $activities->activities = $activities_new;
    
    return $activities;
    }
    add_action(‘bp_has_activities’, ‘my_hidden_activities’, 10, 2 );
    
    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: Membership form #108554
     Laura
    Moderator

    Hello, add this to style.css of child theme

    COPY CODE
    
    li.header-register-button {
        display: none;
    }
    

    This hides the register button at the top, then at your menu add the levels page and call it Register
    Then they will go there to register so it will ask them to pay.
    This doesnt mean they could not register by yourdomain.com/register as it just hides the register button

    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: Blog Posts showing excerpt on home page #108536
     Laura
    Moderator

    Hello, try adding this to the page css where you want to hide it 🙂

    COPY CODE
    
    .news-highlight .entry-summary {
        display: none !important;
    }
    

    Visual composer has a CSS panel at the editor

    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 Button #108497
     Laura
    Moderator

    Hello, just add this to style.css and change it as you wish 🙂

    COPY CODE
    
    a#private-button-id {
        background: red !important;
        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: Related Posts showing oldest articles #108218
     Laura
    Moderator

    Hello, you can check it out at the file kleo\page-parts\posts-related.php
    And you will see its sort by random

    COPY CODE
    
    /* Query args */
    $args=array(
        'post__not_in' => array($post->ID),
        'showposts'=> 8,
        'orderby' => 'rand' //random 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 🙂

    in reply to: Social Icons #108189
     Laura
    Moderator

    Hello, you can add them manually using a html code

    COPY CODE
    
    <ul class="kleo-social-icons">
    <li class="dropdown pull-right tabdrop hide">
    <a href="#">
    </a>
    <ul class="dropdown-menu">
    </ul>
    </li>
    <li>
    <a target="_blank" href="https://twitter.com/SeventhQueen">
    <i class="icon-twitter">
    </i>
    <div class="ts-text">Twitter</div>
    </a></li><li>
    <a target="_blank" href="https://www.facebook.com/seventhqueen.themes">
    <i class="icon-facebook"></i>
    <div class="ts-text">Facebook</div>
    </a></li><li>
    <a target="_blank" href="https://dribbble.com/seventhqueen">
    <i class="icon-dribbble"></i>
    <div class="ts-text">Dribbble</div>
    </a></li><li>
    <a target="_blank" href="https://plus.google.com/+Seventhqueen">
    <i class="icon-gplus"></i>
    <div class="ts-text">Google+</div>
    </a></li></ul>
    
    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, fixed with

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

    At your style.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: Footer resizing & uploading data onto user profile #108124
     Laura
    Moderator

    Hello, there is not a simple way to import bulk data in the user profile fields, for the footer add this to style.css of child theme

    COPY CODE
    
    #footer {
        padding-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: Editing The Header/Logo Area #107863
     Laura
    Moderator

    Hello, this is what i can do

    COPY CODE
    
    .collapse.navbar-collapse.nav-collapse {
        border-top-style: solid;
        border-top-width: 1px;
        border-top-color: #E5E5E5;
    }
    
    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: Issue with footer spacing #107855
     Laura
    Moderator

    Hello, just add this to style.css and you will only see the edit button

    COPY CODE
    
    div#main {
        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: Changing 'Comment, Favorite, Delete' buttons #107838
     Laura
    Moderator

    Hello, try adding this to style.css

    COPY CODE
    
    .activity div#content {
        width: 110% !important;
        padding: 0px !important;
        margin-left: -5% !important;
    }
    .activity #buddypress ul.item-list li {
        padding: 0px !important;
    }
    .activity-meta a {
        font-size: 10px !important;
        padding-left: 35px !important;
        margin-right: 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: BuddyPress Widgets Lost all Styling in Member Navs #107801
     Laura
    Moderator

    Hello, the issue is the plugin: AddThis Website Tools
    Also, add this to style.css of child theme to view the posts carousel correctly

    COPY CODE
    
    .carousel-stories .caroufredsel_wrapper {
        height: 350px !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: Shop Widgets Categories Set Up #107787
     Laura
    Moderator

    Hello, woocommerce widgets have some sorting option, sadly we cant do nothing regarding the lack of widget customization for woocommerce as we are in charge of KLEO theme.

    If you prefer you could just create some links manually to your chosen categories, like:

    COPY CODE
    <a href="category url">Clothes</a>
    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: Editing The Header/Logo Area #107756
     Laura
    Moderator

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

    COPY CODE
    
    .is-sticky .navbar-header {
        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: Portfolio Sidebars #107736
     Laura
    Moderator

    Hello, please try the following ccss at style.css of child theme, let me know if this works 🙂

    COPY CODE
    
    @media only screen and (max-device-width: 991px) {
    .sidebar.sidebar-main.col-sm-3.sidebar-right {
        display: none;
    }
    div#main-container {
        max-width: 1280px !important;
    }
    .template-page.col-sm-9.tpl-right {
        width: 100%;
    }
    }
    
    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 Matching clock and @profile name #107696
     Laura
    Moderator

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

    COPY CODE
    
    span.user-nicename {
        display: none !important;
    }
    .circular-item {
        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: CSS – How can i center my vdeo screen ? #107640
     Laura
    Moderator

    Hello, try

    COPY CODE
    
    .article-content p iframe {
        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: Few Questions #107621
     Laura
    Moderator

    Hello, for the forum, use this css

    COPY CODE
    
    a#user-forums {
        display: none !important;
    }
    

    For the scroll issue, this is because there is no ajax in those sections and its not using any id to position the scroll bar, its like going to another page. This is a buddypress “issue” ( because ti really doesn’t affect nothing ) they may or may not change it

    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: Theme load speed #107613
     Laura
    Moderator

    Hello, i will check it out 🙂
    Please add this to wp-config.php to fix the error first

    COPY CODE
     
    define('WP_MEMORY_LIMIT', '264M');
    
    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 für filtering posts #107511
     Laura
    Moderator

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

    COPY CODE
    
    input#uwpqsf_id_btn {
        padding: 10px 10px;
        font-size: 16px;
        line-height: 1.33;
        border-radius: 4px;
        border: none;
        background: magenta;
        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: Privacy Policy, Terms of Use, Affiliate Disclaimer #107383
     Laura
    Moderator

    Hello, then you will need to add a link at the socket area in theme options, something like

    COPY CODE
    <a href="url of the page">Privacy Policy</a>
    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 members found message #107369
     Laura
    Moderator

    Hello 🙂
    Glad it worked.
    For 1) you can do that with the plugin bp profile search https://es.wordpress.org/plugins/bp-profile-search/
    But you may need to style it a bit
    2) Right now you cant search by match, you will need to integrate that, maybe a developer can do it for you 🙂
    3) Just add this to style.css of child theme

    COPY CODE
    
    @media only screen and (max-width: 940px) {
    .eight.columns.login-buttons {
        margin-top: 15%;
    }
    }
    

    Also, i created these styles for your buttons, this way they match your website a bit more, if you want to use them

    COPY CODE
    
    a.tiny.secondary.button.radius {
        background: transparent !important;
        border-radius: 0px !important;
        border: 1px solid #DDDDDD !important;
    }
    a.tiny.button.radius {
        background: rgb(0, 0, 0) !important;
    }
    .top-bar > ul .name h1 a {
        background: transparent !important;
        border: 1px solid black !important;
    }
    .top-bar ul > li.has-dropdown .dropdown li.has-dropdown > a li a:hover, .top-bar ul > li.toggle-topbar {
        background: transparent !important;
        border-right: 1px solid black !important;
        border-left: 0px !important;
    }
    

    Or

    COPY CODE
    
    .top-bar > ul .name h1 a {
        background: transparent !important;
        border: 1px solid black !important;
    }
    .top-bar ul > li.has-dropdown .dropdown li.has-dropdown > a li a:hover, .top-bar ul > li.toggle-topbar {
        background: transparent !important;
        border-right: 1px solid black !important;
        border-left: 0px !important;
    }
    a.tiny.secondary.button.radius {
        background: transparent !important;
        border-radius: 0px !important;
        border: 1px solid #DDDDDD !important;
    }
    a.tiny.button.radius {
        background: transparent !important;
        color: black !important;
        border-radius: 0px !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 🙂

     Laura
    Moderator

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

    COPY CODE
    
    div#bbp_topics_widget-2 li:before {
        content: "\e86c";
        margin-right: 10px;
        margin-left: 2px;
        font-family: "fontello";
        text-decoration: 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: CSS – How can i center my vdeo screen ? #107358
     Laura
    Moderator

    Hello, try adding this to style.css

    COPY CODE
    
    .article-content p iframe {
        display: block;
    }
    
    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: PENDING ACCOUNTS #107286
     Laura
    Moderator

    Hello, try adding this to style.css

    COPY CODE
    
    add_action('bp_core_activated_user', 'kleo_add_member_activity');
    function kleo_add_member_activity($user_id)
    {
    	add_user_meta( $user_id, 'last_activity', date("Y-m-d H:i:s"));
    }
    

    And installing bp disable activation reloaded

    But as you are getting so many users in pending status, are you sure they are not spam?

    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 Sidebars #107283
     Laura
    Moderator

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

    COPY CODE
    
    @media only screen and (max-device-width: 1000px) {
    .sidebar.sidebar-main.col-sm-3.sidebar-right {
        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: change the color of results #107281
     Laura
    Moderator

    Hello, just add this to your style.css at child theme

    COPY CODE
    
    .pink-text {
        color: #020202;
    }
    

    Change the color as you wish 🙂

    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: Do not want to display the date #107276
     Laura
    Moderator

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

    COPY CODE
    
    .home .post-date {
        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: White Space when using main-section background image #107267
     Laura
    Moderator

    Hello, i do not see the issue, but maybe try adding this to your page style CSS

    COPY CODE
    
    .main-color {
        background-size: cover;
        background-repeat: no-repeat !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: Linking Pictures #107262
     Laura
    Moderator

    Hello, just add this to style.css of child theme
    will disable the link ( use the original shortcode )

    COPY CODE
    
    .home .circle-image {
        pointer-events: none;
        cursor: default;
    }
    
    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, try this maybe

    COPY CODE
    
    function excerpt($limit) {
       $excerpt = explode(' ', get_the_excerpt(), $limit);
       if (count($excerpt)>=$limit) {
          array_pop($excerpt);
          $excerpt = implode(" ",$excerpt).'.';
       } else {
          $excerpt = implode(" ",$excerpt);
       } 
       $excerpt = preg_replace('@\[[^\]]*\]@','',$excerpt);
       return $excerpt;
    }
    

    If it doesn’t work you will need to contact 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: Change Clour #107251
     Laura
    Moderator

    Hello, that css changes all search box colour to black, you can customize it by changing the color codes like
    rgba(0, 0, 0, 0.3) , #000000 , #2D3134

    You can use normal color names like black, cyan, green etc
    Or hexadecimal code for colors http://www.w3schools.com/colors/colors_picker.asp

    Place this code at style.css of your child theme ( the one that should be active )

    COPY CODE
    
    .form-search {
        border-left: 10px solid rgba(0, 0, 0, 0.3) !important;
        border-right: 10px solid rgba(0, 0, 0, 0.3) !important;
    }
    .form-header {
        border-left: 10px solid rgba(0, 0, 0, 0.3) !important;
        border-top: 10px solid rgba(0, 0, 0, 0.3) !important;
        border-right: 10px solid rgba(0, 0, 0, 0.3) !important;
    }
    .form-search, .form-header, div.alert-box, div.pagination span.current {
        background: rgba(47, 47, 47, 0.95) !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: #000000 !important;
    }
    .form-search.custom div.custom.dropdown a.selector, .form-search.custom div.custom.dropdown a.current, .form-search.custom select {
        border: solid 1px #000000 !important;
    }
    .form-search.custom input[type="text"], .form-search.custom input[type="password"] {
        border: 1px solid #000000 !important;
    }
    .form-search .button {
        background: #000000 !important;
        border: 1px solid #000000 !important;
        float: left;
        margin-right: 5px;
    }
    .form-search .notch {
        border-top: 10px solid #2D3134 !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,921 through 1,960 (of 2,796 total)

Log in with your credentials

Forgot your details?