Forum Replies Created

Viewing 40 posts - 2,161 through 2,200 (of 2,796 total)
  • Author
  • in reply to: Few question related to theme layout #91816
     Laura
    Moderator

    Hello, done, added to your functions.php

    COPY CODE
    
    add_action('bp_follow_setup_nav','bpdev_custom_hide_follow_if_not_self');
    function bpdev_custom_hide_follow_if_not_self(){
        if( bp_is_my_profile() || is_super_admin() )
            return ;
        bp_core_remove_nav_item( 'followers' );
        bp_core_remove_nav_item( 'following' );
    }
    

    (As an admin you will be able to see it, but other users wont, try testing logged out)

    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: Forums #91782
     Laura
    Moderator

    Hello, this will do it:

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

    Add to 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: Membership Sign Up #91774
     Laura
    Moderator

    Hello, you can do this automatically by adding this to your functions.php of child theme, change the 1 for your level id ( at memberships > levels, you will see the ID of each level)
    IMPORTANT: Make sure you have Paid Memberships Pro activated

    COPY CODE
    
    
    add_action('user_register', 'kleo_pmpro_default_level');
    function kleo_pmpro_default_level($user_id) {
    	pmpro_changeMembershipLevel(1,$user_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: new cover photo makes the text areas unreadable #91571
     Laura
    Moderator

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

    COPY CODE
    
    #profile .generic-button a, .tabs.pill.custom dd:not(.active) a, #profile .callout, .regulartab dt, .regulartab dd {
        background: rgba(0, 0, 0, 0.46);
        color: #ffffff;
    }
    

    🙂

    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: Shifted Buttons #91448
     Laura
    Moderator

    Hello, this css will do it 🙂

    COPY CODE
    
    .friendship-button a {
        background-color: black !important;
    }
    div#post-mention a {
        background-color: black !important;
    }
    a.send-message {
        background-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: Disable Page Title #91437
     Laura
    Moderator

    Hello, please add this to style.css 🙂

    COPY CODE
    
    h1.page-title {
        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: child-theme problem after latest update #91341
     Laura
    Moderator

    Hello, as i see that header.php doesnt change much
    try maybe

    COPY CODE
    
    <?php
    
    /**
     * BuddyPress - Users Header
     *
     * @package BuddyPress
     * @subpackage bp-default
     */
    
    ?>
    
    <?php do_action( 'bp_before_member_header' ); ?>
    
    
    <?php
    /***
     * If you'd like to show specific profile fields here use:
     * bp_member_profile_data( 'field=About Me' ); -- Pass the name of the field
     */
     do_action( 'bp_profile_header_meta' );
     ?>
    
    <div class="five columns">
    
        <?php
        /**
         * kleo_bp_before_profile_name hook
         *
         * @hooked kleo_bp_compatibility_match - 20
         */
         do_action( 'kleo_bp_before_profile_name' );
         ?>
    	<?php do_action( 'bp_before_member_header_meta' ); ?>
        <?php 
        /**
         * kleo_bp_after_profile_username
         *
         * @hooked kleo_membership_info - 10
         */
        do_action('kleo_bp_after_profile_name');
        ?>
        <p> </p>
        <div class="row">
            <div id="item-header-avatar" class="eight columns image-hover">
                <?php bp_displayed_user_avatar( array('type' =>'full','width' => 580, 'height' => 580) ); ?>
    			 <?php
                /**
                 * kleo_bp_after_profile_image
                 *
                 * @hooked kleo_bp_profile_photo_change - 10
                 */
                 do_action( 'kleo_bp_after_profile_image' );
                 ?>
    			
            </div>
    
            <?php do_action('kleo_bp_header_actions');?>
    		
        </div><!--end row-->
    </div><!--end five-->
    
    <?php do_action( 'bp_after_member_header' ); ?>
    
    <?php do_action( 'template_notices' ); ?>
    
    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: Several Theme Related Questions #91338
     Laura
    Moderator

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

    COPY CODE
    
    div#item-body {
        margin-top: -730px;
        position: absolute;
        margin-left: 665px;
    }
    div#object-nav {
        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: Icons Profile #91307
     Laura
    Moderator

    Hello, try adding this

    COPY CODE
    
    a#user-settings:before {
        width: 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: mobile menu and profile #91266
     Laura
    Moderator

    Hello, please try adding this

    COPY CODE
    
    nav.top-bar {
        width: 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: rtmédia #91115
     Laura
    Moderator

    Hello, this will change it 🙂
    Add to style.css

    COPY CODE
    
    .mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-media-single-comments .rt_media_comment_submit {
        background-color: #3CB4BA !important;
        border-color: #3CB4BA!important;
        color: #fff;
        font-weight: bold;
    }
    

    If you like the service we provided here please rate us 5 stars and a nice comment at themeforest 🙂

    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 Disable Profile Dropdown Menu #91027
     Laura
    Moderator

    Hello, please try adding this to style.css

    COPY CODE
    
    li.relative.btn-profile {
        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 change the media #90865
     Laura
    Moderator

    Hello, for A you will need to replace the images, found at:
    wp-content/themes/sweetdate/assets/images/icons/steps/
    B Just replace the button at Pages > Home > Edit
    Find:

    COPY CODE
    
     [kleo_button_video url="http://www.youtube.com/embed/FtquI061bag" style="alert" size="large" round="radius" icon="film,after"] Our TV Commercial [/kleo_button_video]
    

    With

    COPY CODE
    
    [kleo_button url="http://mywebsite.com" style="standard" size="large" round="radius" icon="0,before" target="_self"] Click Here [/kleo_button] 
    

    C: No, you do not need ssl to use Paypal
    D: Make sure you did not check any category at Memberships > Levels ( edit level and scroll down to find the categories, uncheck them if they are checked)

    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 and profile #90768
     Laura
    Moderator

    Hello, please add this to style.css

    COPY CODE
    
    
    @media only screen and (max-width: 940px) {
    .top-bar {
        background: rgba(17, 18, 19, 0);
    }
    nav.top-bar {
        margin-top: -150px !important;
    }
    .top-bar > ul .name {
        display: none !important;
    }
    ul.button-group.radius.right {
        margin-left: 90px;
    }
    ul.button-group.radius.right a, i {
        height: 20px !important;
        line-height: 0;
        font-size: 10px !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 Buddypress Navigation Icon #90735
     Laura
    Moderator

    Hello, i didnt add the other css sorry, this one will hide the default icons so the images are visible

    COPY CODE
    
    ul.responsive-tabs li a:before {
        color: rgba(240, 248, 255, 0.05) !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: Shifted Buttons #90463
     Laura
    Moderator

    Hello, yes this css will help you 🙂

    COPY CODE
    
    div#item-buttons {
        margin-left: 60px;
    }
    
    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 #90454
     Laura
    Moderator

    Hello, yes 🙂
    Please add this to style.css

    COPY CODE
    
    ul#menu-sweetdate {
        border: 1px solid white;
        padding-top: 4px;
    }
    
    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 question related to theme layout #90420
     Laura
    Moderator

    Hello, yes we can hide that 🙂
    Add this to style.css

    COPY CODE
    
    li#compose-personal-li a {
        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: Icons Profile #90376
     Laura
    Moderator

    Hello, please try to replace the

    COPY CODE
    
    #buddypress div#item-nav .tabdrop .dropdown-menu li a {
        padding: 0 10px;
        height: 33px;
        line-height: 33px;
    }
    

    With

    COPY CODE
    
    #buddypress div#item-nav .tabdrop .dropdown-menu li a {
        padding: 0 10px;
        height: 53px;
        line-height: 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: Buttons #90334
     Laura
    Moderator

    Hello, try with

    COPY CODE
    
    li.relative.btn-profile a {
        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 🙂

     Laura
    Moderator

    Hello, yes, add this 🙂

    COPY CODE
    
    .gform_wrapper input[type=submit]:hover {
        background-color: rgba(0,185,247, 0.7);
        transition: all .3s ease-in-out 0s;
    }
    
    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: Icons Profile #90017
     Laura
    Moderator

    Hello, try adding this 🙂

    COPY CODE
    
    @media (max-width: 991px) {
    li.dropdown.pull-right.tabdrop.open li a:before {
        height: 50px !important;
        width: 50px;
        margin-bottom: 10px;
    }
    a#user-members-compliments:before {
        margin-left: 0% !important;
    }
    #buddypress div#item-nav ul #settings-personal-li a:before, #buddypress div#item-nav ul #admin-groups-li a:before {
        width: 50px !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 question related to theme layout #90005
     Laura
    Moderator

    Hello, no problem, thanks you so much for understanding 🙂
    Try this for the photos

    COPY CODE
    
    li#un-kate img {
        width: 60px !important;
        height: 82px !important;
    }
    

    If not working let me know and i will double check
    For the input i can check it out but i think its global and then you will have to leave it there

    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 customize bbpress? #89996
     Laura
    Moderator

    Hello, here it is 🙂
    Please add it to style.css of child theme

    COPY CODE
    
    ul#menu-kleotopmenu li a:hover {
        color: red !important;
    }
    ul.dropdown-menu.sub-menu.pull-left a:hover {
        color: white;
    }
    .kleo_framework.breadcrumb span.active {
        color: red !important;
    }
    p.page-info em.muted {
        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: Get Connected – Adding Proximity search (within x miles) #89960
     Laura
    Moderator

    Hello, changed the style 🙂 Let me know if you like it, used full width layout for buddypress and this css

    COPY CODE
    
    form#bps_directory6773 div {
        width: 300px !important;
        float: left;
        padding: 10px;
    }
    div#members-dir-search {
        margin-left: 300px !important;
    }
    .main-color select {
        border-color: #E5E5E5;
    }
    div#buddypress div#members-dir-search form.gmw-kleo-form-wrapper select {
        padding: 0px 40px 4px 9px !important;
        margin-right: 10px;
        margin-bottom: 15px;
        height: 33px;
    }
    form#bps_directory6773 div input, select {
        border-color: #DDDDDD !important;
    }
    .member-inner-list.animated.animate-when-almost-visible.bottom-to-top.start-animation {
        border-color: #DDDDDD !important;
    }
    div#send-private-message a {
        border-color: #DDDDDD !important;
    }
    

    For custom request you can contact cornel@seventhqueen.com or me at laura@seventhqueen.com

    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 by adding this to style.css

    COPY CODE
    
    .gform_wrapper .gform_footer input.button, .gform_wrapper .gform_footer input[type=submit] {
        background-color: #00B9F7;
        border: none;
        padding: 10px;
        border-radius: 60px;
    }
    

    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 🙂

    in reply to: Buttons #89899
     Laura
    Moderator

    Hello, delete .right of the css and it should work
    so its

    COPY CODE
    
    ul.button–group.radius 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: Order menu buddypress + update #89896
     Laura
    Moderator

    Hello, for the menu order, please try adding this to your functions.php of child theme

    COPY CODE
    
    function my_change_profile_tab_order() {
    global $bp;
    
    $bp->bp_nav[‘activity’][‘position’] = 10;
    $bp->bp_nav[‘media’][‘position’] = 20;
    $bp->bp_nav[‘messages’][‘position’] = 30;
    $bp->bp_nav[‘friends’][‘position’] = 40;
    $bp->bp_nav[‘groups’][‘position’] = 50;
    $bp->bp_nav[‘forum’][‘position’] = 60;
    $bp->bp_nav[‘profile’][‘position’] = 70;
    $bp->bp_nav[‘compliments’][‘position’] = 80;
    $bp->bp_nav[‘settings’][‘position’] = 90;
    $bp->bp_nav[‘blogs’][‘position’] = 100;
    
    }
    add_action( ‘bp_setup_nav’, ‘my_change_profile_tab_order’, 999 );
    

    Might need to add stuff like My XP Settings.
    The order is easy to change, 10 means first, 70 means its the last, so for example, to add a new one to be the last it should be 80

    To change media to medias, try using loco translate plugin and translate rtmedia 🙂

    For the widget1, try adding this to style.css

    COPY CODE
    
    .mycred-rank-progressbar {
        margin-top: -45%;
    }
    

    Edit it as you prefer, you might also want to delete the plugin name

    For the widget titles, try adding this to style.css, it might look good

    COPY CODE
    
    h4.widget-title {
        background-color: #81D742;
        color: white !important;
        text-align: center;
    }
    

    For 404, add this to style.css

    COPY CODE
    
    body.error404 section.container-wrap.main-title.alternate-color.border-bottom {
        display: none;
    }
    

    The blog issue is resolved 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: Bigger text #89877
     Laura
    Moderator

    Hello, here:
    Please add this to style.css of child theme, change the size as you prefer

    COPY CODE
    
    div#subnav 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: Few question related to theme layout #89858
     Laura
    Moderator

    Hello, when those issues are part of a custom request, not a theme issue, we can help with small ones but as we do not have much time and we have a big list we cant do all.
    I can help you with 6,7 and 8, and in the future if you have more please do send them but bit by bit
    6. Please add this to style.css

    COPY CODE
    
    li#un-kate img {
        width: 60px;
        height: 82px;
    }
    

    7. This css

    COPY CODE
    
    input#send-to-input {
        display: none;
    }
    

    8. This fo example, you can adjust it

    COPY CODE
    
    .bp_msgat_ui_wrapper button {
        width: 100px;
        height: 20px;
        padding: 10px;
        line-height: 0;
    }
    

    I am sorry that i cant assist you with more, please understand the reason. 🙂

    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: Several Questions #89829
     Laura
    Moderator

    Hello, yes, try replacing the old css with this one

    COPY CODE
    
    .home-page #header {
        background-size: cover !important;
    }
    .home-page #header {
        height: 800px;
    }
    .home-page .header-bg.clearfix {
        height: 800px;
    }
    
    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: Icons Profile #89820
     Laura
    Moderator

    This should do it, added to your style.css

    COPY CODE
    
    a#user-settings:before {
        width: 30px;
    }
    a#user-members-compliments:before {
        margin-left: 16%;
    }
    
    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 Buddypress Navigation Icon #89815
     Laura
    Moderator

    Hello, you can use this code as an example, is a css code

    COPY CODE
    
    a#user-activity:before {
    
        background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/pencil-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-xprofile:before {
    
        background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/profle-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-media:before {
    
        background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/polaroids-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-messages:before {
    
        background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/chat-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-friends:before {
    
        background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/smartphone-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-notifications:before {
    
        background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/megaphone-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-members-compliments:before {
    
        background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/heart-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-settings:before {
    
        background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/tools-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    a.dropdown-toggle:before {
       background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/settings-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    ul.responsive-tabs li a:before {
        color: transparent !important;
        width: 50px;
    }
    

    I do not know the class for followers and follow, or mycred, but you could try

    COPY CODE
    
    a#user-followers:before {
    
        background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/genius-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    a#user-following:before {
       background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/genius-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    a#user-mycred:before {
       background-image: url('http://icons.iconarchive.com/icons/elegantthemes/beautiful-flat/128/money-icon.png');
    
        background-size: cover;
    
        display: block;
    
    }
    

    If it doesnt work please share an account so i can see 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: Icons Profile #89780
     Laura
    Moderator

    Hello, here its the full code, just updated with a fixed size for all icons

    COPY CODE
    
    a#user-activity:before {
    
        background-image: url('http://lezgirls.fr/wp-content/uploads/2015/11/activites.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-xprofile:before {
    
        background-image: url('http://lezgirls.fr/wp-content/uploads/2015/11/profil.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-media:before {
    
        background-image: url('http://lezgirls.fr/wp-content/uploads/2015/11/medias.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-messages:before {
    
        background-image: url('http://lezgirls.fr/wp-content/uploads/2015/11/messages.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-friends:before {
    
        background-image: url('http://lezgirls.fr/wp-content/uploads/2015/11/amies.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-notifications:before {
    
        background-image: url('http://lezgirls.fr/wp-content/uploads/2015/11/notes.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-members-compliments:before {
    
        background-image: url('http://lezgirls.fr/wp-content/uploads/2015/11/compliment.png');
    
        background-size: cover;
    
        display: block;
    
    }
    
    a#user-settings:before {
    
        background-image: url('http://lezgirls.fr/wp-content/uploads/2015/11/reglages.png');
    
        background-size: cover;
    
        display: block;
    
    }
    a.dropdown-toggle:before {
       background-image: url('http://lezgirls.fr/wp-content/uploads/2015/11/reglages.png');
    
        background-size: cover;
    
        display: block;
    
    }
    ul.responsive-tabs li a:before {
        color: transparent !important;
        width: 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: Text not showing correct #89701
     Laura
    Moderator

    Hello, please try adding this to style.css

    COPY CODE
    
    #main {
        font-size: 16px;
        font-family: Lato;
        font-weight: 400;
    }
    
    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: Show menu item icons only on mobile layout #89664
     Laura
    Moderator

    Hello, please add this to style.css

    COPY CODE
    
    @media (max-width: 991px) {
    #header .navbar-nav>li>a {
        color: white;
    }
    ul#menu-main-menu i:before {
        color: #53C3ED !important;
    }
    }
    

    The notification pop out is not available

    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 Alignment #89185
     Laura
    Moderator

    Hello, please try with this css code

    COPY CODE
    
    div#socket .container {
        max-width: 1400px !important;
        width: 1400px;
    }
    

    And change the css code txt1 to this

    COPY CODE
    
    .txt1 {
        text-align: right;
        float: right;
        z-index: 1;
        position: absolute;
        margin-left: 70%;
    }
    
    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

    COPY CODE
    
    .widgets-container .widgets ul li:before {
        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: How can I get my trademarks at the bottom of my main page? #88934
     Laura
    Moderator

    Hello, do you mean the logo? Try at Appearance > Widgets and use a text widget, add the logo using a simple html tag like

    COPY CODE
    
    <img src="URL OF THE IMAGE" width="80" height="80" />
    
    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 Footer Spacing #88931
     Laura
    Moderator

    Hello, please try by adding this to style.css

    COPY CODE
    
    @media (max-width: 991px) {
    section.container-wrap.main-color.custom-color.no-col-gap.text-center {
        min-height: 80px !important;
    }
    .txt1 {
        position: relative !important;
        margin-left: 0% !important;
        font-size: 10px !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 - 2,161 through 2,200 (of 2,796 total)

Log in with your credentials

Forgot your details?