Forum Replies Created

Viewing 40 posts - 1,281 through 1,320 (of 2,796 total)
  • Author
  • in reply to: Change Footer Font Size #147492
     Laura
    Moderator

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

    COPY CODE
    
    #footer {
        font-size: 14px !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

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

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

    Always happy to help you 🙂

    in reply to: How do I resize custom stat image? #147391
     Laura
    Moderator

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

    COPY CODE
    
    .status img {
        width: 120px;
        height: 120px;
    }
    
    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 can use the following css 🙂 Just add it to style.css of child theme
    Dropdown background color:

    COPY CODE
    
    ul.dropdown-menu {
        background: #DE5161 !important;
    }
    

    Dropdown menu size

    COPY CODE
    
    ul.dropdown-menu h3 {
        font-size: 18px !important;
    }
    

    Dropdown text color

    COPY CODE
    
    ul.dropdown-menu h3 {
       color: #F8BB4B !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: Apply max-width to a one column layout #147232
     Laura
    Moderator
    Not marked as solution
    in reply to: How to remove a BuddyPress Profile Tab #147223
     Laura
    Moderator

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

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

    Laura Solanes - Graphic Designer and Web Designer

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

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

    Always happy to help you 🙂

    in reply to: rtMedia and Sweet Date Demo #147197
     Laura
    Moderator

    Hello, i see, then use this css

    COPY CODE
    
    a#user-notifications {
        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: Styling groups and forum page #147195
     Laura
    Moderator
    Not marked as solution
    in reply to: Mobile CSS #147057
     Laura
    Moderator

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

    COPY CODE
    
    @media only screen and (max-width: 940px) {
    input[type="password"] {
        width: 90px;
        margin-top: 30px;
        margin-left: -50px;
    }
    }
    
    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 groups and forum page #146985
     Laura
    Moderator
    Not marked as solution
    in reply to: BuddyPress profile cover background #146721
     Laura
    Moderator

    Hello, this is the css you need, change the color as you prefer 🙂

    COPY CODE
    
    body.is-user-profile .profile-cover-inner {
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 100%) !important;
        background: -webkit-gradient(linear, left top, left bottom, color-stop(35%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.45)))!important;
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 100%) !important;
        background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 100%) !important;
        background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.45) 100%)!important;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 35%, rgba(20, 195, 234, 0.45) 100%) !important;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=0) !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: Visibility options on registration page #146705
     Laura
    Moderator

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

    COPY CODE
    
    .field-visibility-settings-toggle {
        display: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

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

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

    Always happy to help you 🙂

    in reply to: Change Hover Color of BuddyPress Profile Tabs #146704
     Laura
    Moderator

    Hello, try with this css, add it to style.css of child theme

    COPY CODE
    
    div#object-nav a:hover {
        color: #7bef7b !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: Font size css for Kleo Accordion & Kleo Tabs #146696
     Laura
    Moderator

    Hello, you can use this css

    COPY CODE
    
    a.accordion-toggle {
        font-size: 14px;
    }
    ul.nav.nav-pills a {
        font-size: 14px;
    }
    
    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: Advanced search #146625
     Laura
    Moderator
    Not marked as solution
    in reply to: Kleo Posts Element #146624
     Laura
    Moderator

    Hello, i see, please try this

    COPY CODE
    
    .vc_column-inner.vc_custom_1480371830406 h3.post-title.entry-title {
        font-size: 18px !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: Disable social icon on mobile #146521
     Laura
    Moderator

    Hello, use this css, add it to style.css of child theme
    1-

    COPY CODE
    
    @media only screen and (max-width: 960px) {
    #top-social {
        display: none !important;
    }
    }
    

    2-

    COPY CODE
    
    ul.kleo-social-icons i:before {
        font-size: 20px !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: Resize logo and pin to left side #146502
     Laura
    Moderator
    Not marked as solution
    in reply to: BP Profile Styling Issues #146484
     Laura
    Moderator

    Hello, try

    COPY CODE
    
    li.rtmedia-list-item.masonry-brick img {
        border-radius: 60px !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: Horizontal form modification #146277
     Laura
    Moderator

    Hello, try with this css

    COPY CODE
    
    .two.columns.hz-checkbox-name {
        float: left;
        clear: both !important;
        width: 100%;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .two.columns.hz-radio {
        float: left;
        clear: both !important;
        width: 100%;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    .two.columns.hz-agerange.hz-from {
        clear: both !important;
        padding-top: 10px;
    }
    .two.columns.hz-agerange.hz-to {
        clear: right !important;
        padding-top: 10px;
    }
    .two.columns.hz-select {
        clear: left !important;
        padding-top: 10px !important;
    }
    .dir-form .two.columns {
        clear: right !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: BP Profile Styling Issues #146148
     Laura
    Moderator

    Hello, try

    COPY CODE
    
    .rtmedia-container .rtmedia-list.rtmedia-list-media {
        width: 600px !important;
    }
    .rtmedia-container .rtmedia-list.rtmedia-list-media li {
        width: 100px !important;
        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: Kleo Posts Element #146126
     Laura
    Moderator

    Hello 🙂
    Try by adding this to style.css

    COPY CODE
    
    .vc_column-inner.vc_custom_1480371830406 a {
        font-size: 18px !important;
    }
    

    Let me know more details if you need adjustment:)

    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: Customize Top Right Header Menu #146014
     Laura
    Moderator

    Hello, add this to style.css of child theme

    COPY CODE
    
    ul.submenu li:nth-child(6) {
        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: BP Profile Styling Issues #146011
     Laura
    Moderator

    Hello, try

    COPY CODE
    
    .rtmedia-container .rtmedia-list.rtmedia-list-media li {
        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: Change this #145654
     Laura
    Moderator

    Hello, you can use

    COPY CODE
    
    ul.button-nav a {
        font-size: 20px;
    }
    
    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: Woocommerce: add-to-cart button instead of text #145639
     Laura
    Moderator

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

    COPY CODE
    
    button.single_add_to_cart_button.button {
        background: #770FA4 !important;
        color: white!important;
        border-radius: 5px;
    }
    
    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: Woocommerce tips #145612
     Laura
    Moderator

    Hello, try with

    COPY CODE
    
    ul.kleo-toggle-submenu {
        background: white !important;
    }
    .kleo-minicart {
        width: 300px;
    }
    .minicart-header {
        background: black;
        color: white;
    }
    .minicart-contents {
        background: blue;
        color: white;
    }
    .minicart-total-checkout {
        background: red !important;
        color: white;
    }
    .minicart-buttons {
        background: green !important;
        color: white;
    }
    .minicart-buttons .btn-default {
        background: red !important;
        border: red !important;
        color: white !important;
    }
    .minicart-buttons .btn-highlight {
        background: blue !important;
        color: white !important;
        border: blue !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: BP Profile Styling Issues #145448
     Laura
    Moderator

    Hello, i am trying to access your admin area but the server is always having issues, so i will post here some css that might fix your issue 🙂
    Just add it to style.css of child theme

    COPY CODE
    
    li#album-personal-li {
        display: none !important;
    }
    .rtmedia-container .rtmedia-list.rtmedia-list-media li {
        width: 100% !important;
    }
    a.rtmedia-list-item-a img {
        border-radius: 60% !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: Memory #145373
     Laura
    Moderator

    Hello 🙂
    Try this, go to wordpress files and edit wp-config.php
    Add this

    COPY CODE
    
    define('WP_MEMORY_LIMIT', '256M');
    

    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: Woocommerce tips #145310
     Laura
    Moderator

    Hello, use this

    COPY CODE
    
    h1.product_title.entry-title {
    font-size: 30px !important;
    font-weight: 400;
    font-family:"Raleway" !important;
    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: Some customization #145302
     Laura
    Moderator
    Not marked as solution
    in reply to: Removing page name and gap #145288
     Laura
    Moderator

    Hello, try this

    COPY CODE
    
    h2.article-title {
        display: none !important;
    }
    #main {
        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: Online Counter Pictures #145283
     Laura
    Moderator

    Hello, please share the codes you are using inside <*pre> tags like this <*/pre> without the *

    COPY CODE
    
    <pre> the code here 
    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 this #145272
     Laura
    Moderator

    Hello, you can change the size adding this css to style.css of child theme 🙂

    COPY CODE
    
    div#object-nav a {
        font-size: 18px !important;
    }
    

    About changing the name, make sure you translate sweetdate and buddypress plugin and click SYNC button at least twice.

    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: Embeding from Tumbrl and others sites. #145079
     Laura
    Moderator

    Hola, yo me encargo de traducirlo a español, pronto estará completo 🙂
    Respecto a qtranslate x no creo que lo permita, pero has probado usando los tags?
    si vas a los profile fields en Usuarios > Campos de perfil
    en el nombre del campo, pon

    COPY CODE
    
    [:en]En Inglés[:es]En Español[:] 

    si eso no funciona prueba

    COPY CODE
    
    <!--:en-->En Inglés<!--:--><!--:es-->En Español<!--:-->
    

    Si no, prueba WPML https://wpml.org/forums/topic/translate-buddypress-profile-fields/

    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: Profile Menu – Adding Links In The Drop Down #145002
     Laura
    Moderator

    Hello, try with

    COPY CODE
    
    add_filter('header_profile_dropdown', 'my_profile_link');
    function my_profile_link($links) {
    	$links[] = '<li><a>user_login . '/groups/'; ?>">Groups</a></li>';
    	return $links;
    }
    
    
    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 Background Gradient Color #144986
     Laura
    Moderator

    Hello, try

    COPY CODE
    
    .kleo-gradient {
        background: 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: questions #144970
     Laura
    Moderator
    Not marked as solution
    in reply to: group single page #144968
     Laura
    Moderator

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

    COPY CODE
    
    div#item-header-wrap {
        width: 100%;
        position: absolute;
        height: 400px;
    }
    
    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 > Full Text: Restrict image size #144962
     Laura
    Moderator

    Hello, try this:

    COPY CODE
    
    .caroufredsel_wrapper {
        width: 500px !important;
        height: 500px !important;
    }
    .caroufredsel_wrapper img {
        width: 500px !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 background image to registration page #144961
     Laura
    Moderator
    Not marked as solution
Viewing 40 posts - 1,281 through 1,320 (of 2,796 total)

Log in with your credentials

Forgot your details?