Forum Replies Created

Viewing 40 posts - 1,041 through 1,080 (of 2,796 total)
  • Author
  • in reply to: Add registration steps #158052
     Laura
    Moderator
    Not marked as solution
    in reply to: PROFILE AREA #158048
     Laura
    Moderator

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

    COPY CODE
    
    .mdetcenter {
        color: white !important;
        font-size: 14px !important;
        font-weight: bold !important;
    }
    

    And clear cache 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

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

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

    Always happy to help you 🙂

    in reply to: Custom content and Title Section styles for a CPT #158046
     Laura
    Moderator

    Hello, then you can use the class .article-content 🙂

    COPY CODE
    
    .article-content h1 {
    STYLE 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: Bugs listing and/or finding members #158039
     Laura
    Moderator
    Not marked as solution
    in reply to: Colors on hovering #158033
     Laura
    Moderator

    Hello, i will be happy to help you fix those colors, just a bit of css is needed, please add this to style.css of child theme and change the colors as you wish 🙂

    Top bar line

    COPY CODE
    
    .top-links {
        border-bottom: 1px solid black !important;
    }
    

    Profile dropdown arrow

    COPY CODE
    
    .btn-profile .button.dropdown.split.tiny span:after {
        border-color: red transparent transparent transparent !important;
    }
    

    Pagination

    COPY CODE
    
    ul.pagination li.current a, div#main ul.pagination li.current a {
        background: red !important;
    }
    

    Hover links

    COPY CODE
    
    #main .article-meta .link-list a:hover {
        color: red !important;
    }
    

    Let me know if i am missing something 🙂

    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 reduce size of comments form text area? #158025
     Laura
    Moderator

    Hello, have you tried using css instead of php?
    For example if the id of your text area is “comment” you could use this css at style.css of child theme

    COPY CODE
    
    #comment {
    height: 200px !important;
    }
    

    Let me know if that works 🙂

    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: hide page titel #157889
     Laura
    Moderator

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

    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: How to hide Post Meta “Comments” & “Author” #157886
     Laura
    Moderator

    Hello, just add this to style.css of child theme, found at wp-content/themes/sweetdate-child or at Appearance > Editor > Style.css

    COPY CODE
    
    ul.link-list li:last-child {
        display: none !important;
    }
    ul.link-list li:nth-child(2) {
        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: Custom content and Title Section styles for a CPT #157880
     Laura
    Moderator

    Hello, here the css for a default kleo post page, you would need to add the css to style.css
    But it will remove all page titles unless you have a special cass for the custom post type, that was what i wanted to check at the live link

    Remove title

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

    To edit H1,H2,H3 or p, you can use their default classes

    COPY CODE
    
    h1 {
    font-size:PLACE THE SIZE IN PX;
    color: PLACE A COLOR;
    }
    h2 {
    font-size:PLACE THE SIZE IN PX;
    color: PLACE A COLOR;
    }
    h3 {
    font-size:PLACE THE SIZE IN PX;
    color: PLACE A COLOR;
    }
    p {
    font-size:PLACE THE SIZE IN PX;
    color: PLACE A COLOR;
    }
    

    You can add any css style to them, if you need a better code, just let me know what changes you want to do and it will give you the code.

    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 background color of a KLEO post #157875
     Laura
    Moderator
    Not marked as solution
    in reply to: Icon size #157873
     Laura
    Moderator

    Hello, for the menu icon size add this to style.css of child theme

    COPY CODE
    
    ul#menu-kleonavmenu i:before {
        font-size: 18px !important;
    }
    

    Can you send me a link to see the emoticons?

    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 look off #157872
     Laura
    Moderator

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

    COPY CODE
    
    #buddypress div.activity-meta a {
        padding: 0px 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: PROFILE AREA #157664
     Laura
    Moderator

    Hello could you share ftp and wp access so i can test it? I could move the fields up to show it as you want
    For the button colors just add this to style.css of child theme

    COPY CODE
    
    a.activity-button.mention {
        background: black !important;
    }
    a.send-message {
        background: red !important;
    }
    .friendship-button a {
        background: pink !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: menu not display on smartphone #157657
     Laura
    Moderator

    Hello, it is there, just that it was not visible, add this to style.css of child theme, let me know if it helps 🙂

    COPY CODE
    
    .header-color .navbar-toggle .icon-bar {
        background-color: #4391c8 !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: Comment form labels #157646
     Laura
    Moderator

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

    COPY CODE
    
    p.comment-form-comment label {
        display: none !important;
    }
    

    Let me know if it helps 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

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

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

    Always happy to help you 🙂

    in reply to: Top Social Bar colors #157567
     Laura
    Moderator
    Not marked as solution
    in reply to: News Highlight and News Focus disable label #157518
     Laura
    Moderator

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

    COPY CODE
    
    .post-content.animated.animate-when-almost-visible.el-appear.start-animation .label {
        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: Register form redirects to /register page #157476
     Laura
    Moderator

    Hello, how did you create the custom registration page? If using buddypress, the default registration page is /register so its normal that it redirect there.
    It depends on how you created your registration page
    You could try by adding this to functions.php of child theme

    COPY CODE
    
    function wpse_19692_registration_redirect() {
        return home_url( '/my-page' );
    }
    
    add_filter( 'registration_redirect', 'wpse_19692_registration_redirect' );
    

    at /my-page, set your welcome page url

    To change wordpress default email, check http://www.artishock.net/wordpress/how-to-change-wordpress-default-email-from-name-and-from-address/

    And this will disable activation https://wordpress.org/plugins/bp-disable-activation-reloaded/

    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 the title by title by default for all pages #157417
     Laura
    Moderator

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

    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: Top Social Bar colors #157351
     Laura
    Moderator
    Not marked as solution
    in reply to: header #157334
     Laura
    Moderator

    Hello, please check it out, i added this to style.css of child theme

    COPY CODE
    
    @media (min-width: 768px) {
    .top-menu.col-xs-12.col-sm-7.no-padd {
        margin-left: 1%;
        width: 30%;
    }
    }
    
    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, for the first issue, the problem is that you need fields to show the form, those fields are selected at sweetdate > buddypress
    2- Where do you want to use it?
    3- Add this to style.css of child theme

    COPY CODE
    
    #call-to-actions .alert {
        background-color: black !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 🙂

    in reply to: love hearts #157207
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator

    Hello, to change the border color use this css
    add to style.css of child theme

    COPY CODE
    
    .buddypress #item-header-avatar {
        border-color: green !important;
    }
    

    For the online button position

    COPY CODE
    
    .buddypress .kleo-online-status {
        /* right: 0; */
        bottom: 20px;
        width: 16px;
        height: 16px;
        right: 4px;
        left: 4px;
        top: 15px;
    }
    

    For the online button color: if online

    COPY CODE
    
    span.kleo-online-status.high-bg {
        background: 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: BuddyPress icon style #157012
     Laura
    Moderator

    Hello, here is the css:

    COPY CODE
    
    .acomment-reply:before {
        content: "\e9c2";
        font-family: fontawesome;
        text-align: center;
        transition: all 0.4s ease-in-out 0s;
        font: 120% "fontello";
        margin-bottom: 10px;
    }
    
    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 Version (SweetDate) #156925
     Laura
    Moderator
    Not marked as solution
     Laura
    Moderator

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

    COPY CODE
    
    .activity-meta a {
        border: none !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

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

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

    Always happy to help you 🙂

     Laura
    Moderator

    Hello, lets go point by point 🙂
    1- That doesnt seem to be the main shop page but a page edited with visual composer, just edit the page and take off the shop categories element 🙂
    2- This should work, add to style.css of child theme

    COPY CODE
    
    .social-header.header-color {
        display: none !important;
    }
    

    Can you explain a bit more the rest of the issues?

    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: Main menu not showing on top #156773
     Laura
    Moderator

    Hello, try by adding this to style.css

    COPY CODE
    
    #menu-main a {
        color: black;
    }
    

    Or check your homepage settings and make sure the menu is set to 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: 100% width container #156770
     Laura
    Moderator

    Hello, at the visual composer element settings, you should see a field called id, add any name to it, and then at the css code i sent you, add the id with a # before it
    Like this
    ID: block-text
    CSS:

    COPY CODE
    
    #block-text .section-container.container {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

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

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

    Always happy to help you 🙂

    in reply to: Transparent menu – Some simple styling help needed! #156765
     Laura
    Moderator

    Hello 🙂
    2- Try

    COPY CODE
    
    .header-scrolled .submenu-inner {
        background: black;
        color: white !important;
    }
    .header-scrolled .kleo-toggle-submenu {
        border: black;
    }
    

    4- Try

    COPY CODE
    
    .header-scrolled .navbar-transparent .navbar-nav li .dropdown-menu, .navbar-transparent .navbar-nav li .dropdown-menu .dropdown-menu {
        background-color: rgba(0, 0, 0, 0.35) !important;
        color:black !important;
    }
    .header-scrolled .navbar-transparent .navbar-nav li .dropdown-menu, .navbar-transparent .navbar-nav li .dropdown-menu .dropdown-menu a {
        color:black !important;
    }
    .header-scrolled .navbar-transparent .navbar-nav li .dropdown-menu, .navbar-transparent .navbar-nav li .dropdown-menu .dropdown-menu a:hover {
        color:#f58426 !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 color in Forums (bbpress) #156762
     Laura
    Moderator

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

    COPY CODE
    
    .bbp-reply-content p {
        color: #777777 !important;
    }
    .bbp-reply-content p {
        color: #777777 !important;
        font-weight: 400 !important;
        font-family: "Roboto" !important;
        line-height:
    }
    
    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 remove header and footer on mobile? #156737
     Laura
    Moderator

    Hello, i see you have a plugin that adds a menu to your mobile, is that the one you want to hide?
    If so here is the css code, add to style.css of child theme

    COPY CODE
    
    #shiftnav-toggle-main {
        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: Changing color of buttons #156732
     Laura
    Moderator

    Hello, i see the button changed so i guess you resolved it 🙂
    For the tabs if you still dont have the code here is the css

    COPY CODE
    
    .vc_tta-color-white.vc_tta-style-classic .vc_tta-tab a {
        border-color: #f7f7f7;
        background-color: #FFF;
        color: #666;
    }
    
    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: Problem with HomePage #156634
     Laura
    Moderator

    Aquí esta el código que se usa para los campos personalizados

    COPY CODE
    
    [kleo_status_icon type="total" subtitle="Members in total"] [kleo_status_icon type="members_online" subtitle="Members online"] 
    [kleo_status_icon type="custom" field="I am a" value="Woman" online="no" subtitle="Total Women" image="http://date.prontomedia.dk/wp-content/themes/sweetdate/assets/images/icons/steps/status_03.png"] 
    [kleo_status_icon type="custom" field="I am a" value="Man" online="no" subtitle="Total Men" image="http://date.prontomedia.dk/wp-content/themes/sweetdate/assets/images/icons/steps/status_04.png"] 
    
    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

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

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

    Always happy to help you 🙂

    in reply to: Logo setting #156621
     Laura
    Moderator
    Not marked as solution
    in reply to: Transparent menu – Some simple styling help needed! #156571
     Laura
    Moderator

    Hello, try using this css

    COPY CODE
    
    .navbar-transparent .navbar .kleo-main-header.header-scrolled {
        background-color: rgba(226, 226, 226, 0.23) !important;
    }
    
    

    2 – Do you mean this? (attached)
    3- This css should fix it

    COPY CODE
    
    .caret:after {
        color: black !important;
    }
    

    4- I do not see any orange text, can you share a screenshot of what do you want? 🙂

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    Laura Solanes - Graphic Designer and Web Designer

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

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

    Always happy to help you 🙂

    Attachments:
    You must be logged in to view attached files.
    in reply to: Font size widgets #156568
     Laura
    Moderator

    Hello, just add this to style.css

    COPY CODE
    
    .widget.buddypress div.item-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 🙂

     Laura
    Moderator

    Hello, that color is the actual color, i mean which color do you want to use?
    Here is the code

    COPY CODE
    
    .vc_color-peacoc.vc_message_box-solid-icon .vc_message_box-icon {
        color: #fff;
        background-color: black !important;
    }
    .vc_color-peacoc.vc_message_box-outline, .vc_color-peacoc.vc_message_box-solid-icon {
        color: #366a79;
        border-color: black !important;
        background-color: transparent;
    }
    
    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: background #156455
     Laura
    Moderator

    Hello, try

    COPY CODE
    
    ul#menu-sweetdate {
        margin-top: -6%;
    }
    

    But please remember we do not do custom requests just theme related issues

    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,041 through 1,080 (of 2,796 total)

Log in with your credentials

Forgot your details?