This topic has 31 replies, 3 voices, and was last updated 6 years by Radu.

  • Author
  • #203130
     emmanuel
    Participant

    hi could theses numbers be removed that count the photos see attachment

    Attachments:
    You must be logged in to view attached files.
    #203139
     Kieran_SQ
    Moderator

    Hi,

    You can use the below custom CSS in your SweetDate Child theme’s style.css to hide this element.

    COPY CODE
    #profile .radius.label.alert {
        display: none;
    }

    Thanks,

    Kieran

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203140
     emmanuel
    Participant

    this too see attachment

    Attachments:
    You must be logged in to view attached files.
    #203143
     Kieran_SQ
    Moderator

    Hi,

    Sorry for missing that, to remove the count for the media tab only please use the below CSS

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

    Thanks,

    Kieran

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203145
     emmanuel
    Participant

    thanks on the mobile website on the profile pages there is a little space between the name, menu and profile picture could some of that space be minimize with see attachment

    Attachments:
    You must be logged in to view attached files.
    #203151
     Kieran_SQ
    Moderator

    Hi,

    Please try adding the below custom CSS to your SweetDate Child theme’s style.css, make sure to purge website cache and browser cache (Ctrl+F5) to see changes.

    COPY CODE
    @media only screen and (max-width: 767px) {
    #profile .user-nicename {display: none;}
    .bp-user #main {padding-top: 0px;}
    #profile p:nth-child(5) {display: none !important;}
    }

    Thanks,

    Kieran

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203152
     emmanuel
    Participant

    thanks could these two button move to the right side in users profile see attachment

    Attachments:
    You must be logged in to view attached files.
    #203155
     Kieran_SQ
    Moderator

    Hi,

    With CSS you wouldn’t be able to reorder the tabs that way, you’d need PHP for each plugin to change the order, if you specifically wish to do this then you will need to reach out to the respective plugin authors and ask for assistance.

    You can use the below CSS to reduce the size of the area if you wish. This will put all of the items in one row but will not change their order.

    COPY CODE
    @media only screen and (max-width: 767px) {
    #item-buttons .generic-button {
        display: inline-block;
        float: left;
        max-width: 25%;
    }
    }

    You could also use this CSS instead which will place them over two rows. Again, this will not change the order.

    COPY CODE
    @media only screen and (max-width: 767px) {
    #item-buttons .generic-button {
        display: inline-block;
        float: left;
        max-width: 50%;
    }
    }

    As always, clear caches to see changes on mobile devices.

    Thanks,

    Kieran

    Edit: Please use the code that has been updated in this ticket and not the code sent in the email. I forgot to wrap the CSS in a media query. I have now updated the CSS.

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203157
     Kieran_SQ
    Moderator

    Please see above note about an error in the CSS that I sent. I have updated this for you.

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203158
     emmanuel
    Participant

    thanks i had to make it only for mobile, could the menu be a little smaller on the mobile see attachment for a example

    Attachments:
    You must be logged in to view attached files.
    #203163
     Kieran_SQ
    Moderator

    Hi,

    I had updated the CSS to account for mobile only. The attached image is a little nondescript, in which way would you like to make it smaller? Less wide, Less padding etc. – let me know and I will send you the CSS.

    Thanks,

    Kieran

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203165
     emmanuel
    Participant

    less wide

    #203169
     Kieran_SQ
    Moderator

    Hi,

    Please use the below custom CSS in the Child themes style.css

    COPY CODE
    @media only screen and (max-width: 767px) {
    .contain-to-grid .top-bar {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
    }

    Adjust the 80% value to suit your needs and clear caches to see changes.

    Thanks,

    Kieran

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203171
     emmanuel
    Participant

    hi it did not work

    #203175
     Kieran_SQ
    Moderator

    Hi,

    I do not see the CSS that I sent to you reflected in the SweetDate Child theme’s style.css file. Please purge your cache completely and test again.

    If you still do not see changes then please update this ticket, in a private reply, with admin credentials for your site so I can check.

    Thanks,

    Kieran

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203176
     Kieran_SQ
    Moderator

    Also, please try adding !important to the width line.

    width: 80% !important;

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203178
     emmanuel
    Participant

    it worked when i added !important;, but is not centered

    Attachments:
    You must be logged in to view attached files.
    #203183
     Kieran_SQ
    Moderator

    Please try adding !important to the other two lines for margin-left and margin-right

    Kieran

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203187
     emmanuel
    Participant

    thanks, on the members page could the space between the profiles be reduce a little see attachment

    Attachments:
    You must be logged in to view attached files.
    #203192
     Kieran_SQ
    Moderator

    Hi,

    You can use the below custom CSS in your SweetDate Child theme’s style.css, I have added !important to this CSS because it does not appear you’re adding your CSS in the file stated above and therefore you may need to use !important going forward with any CSS for it to render as expected.

    COPY CODE
    #members-list .search-item {
        margin-top: 50px !important;
    }
    #members-list {
        margin-top: 50px !important;
    }

    Thanks,

    Kieran

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203195
     emmanuel
    Participant

    hi that did not work

    #203197
     Kieran_SQ
    Moderator

    Hi,

    Please try adding this directly to the SweetDate Child theme’s style.css, I cannot see the CSS I sent you there. If it is there, please clear your caches.

    If after adding the CSS to the style.css it still does not appear then please update this ticket with admin credentials so I can look into this.

    Kieran

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203198
     emmanuel
    Participant

    i pasted it in the Child theme’s style.css and it work, but it did not work on the mobile website

    Attachments:
    You must be logged in to view attached files.
    #203202
     Kieran_SQ
    Moderator

    Hi,

    I checked your site on the Chrome device emulator and on my mobile and the changes are reflected. Please purge your mobile browsers cache completely and reload.

    Thanks,

    Kieran

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203216
     emmanuel
    Participant

    I test it on 4 different mobile phone and it didn’t work

    #203218
     Kieran_SQ
    Moderator

    Hi,

    I can see on mobile that the values have been changed to 20px !important but if this is not working for you I’ll assign this ticket to a higher support level for review. They’ll be in touch as soon as they can, Monday to Friday, East European Time.

    Thanks,

    Kieran

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

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

    Custom development requests can be sent to dev@seventhqueen.com, one of the development team will be happy to discuss your needs.

    #203220
     emmanuel
    Participant

    ok apart from that there is holes on the member page see attachment

    Attachments:
    You must be logged in to view attached files.
    #203351
     Radu
    Moderator

    Cannot see like that i see them normally, should i do something specific ?

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
    #203462
     emmanuel
    Participant
    This reply has been set as private.
    #203504
     Radu
    Moderator

    Did you see also this bug on our demo ?

    It’s somehow related to your child theme ?

    Cheers
    R

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

    ok so what can i do to fix it

    #203577
     Radu
    Moderator

    To hire a developer that can manage all your custom request for such as custom customization things.

    I had helped you with all of those even i shouldn’t (our support not cover custom things). and your requests are endless.

    So you will have to hire a developer that can do all of your needs for you.

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 32 posts - 1 through 32 (of 32 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?