BuddyBoss Home – Web Support Forums Themes Boss. theme wangguard css integration

Viewing 13 posts - 1 through 13 (of 13 total)
  • Question

    #46348
    @tomastd

    Hey guys,

    I was thinking on fixing it in my child theme. But wangguard is a good plugin that worths, so I decided to request this here.

    In wall activity the button of wangguard has not the same css style than the rest of the buttons. I attach you a capture.

    Regards!!

    Answers

    #46388
    @vapvarun

    Hi @tomastd
    You can include specific css for it with class id wangguard-user-report
    like this and also use :before
    .wangguard-user-report{
    }
    .wangguard-user-report:before{
    }
    Regards
    Varun Dubey

    #46584
    @tomastd

    I have some problems with it.
    In firefox inspector I can change the element{} and it works, but when I write it in wordpress custom CSS it doesn’t work. I attach a screen capture to show what I’m doing.

    I copied the CSS from the “spam” button.
    .wangguard-user-report:before{
    margin: 0px 5px;
    color: #FFF;
    background: #CCC none repeat scroll 0% 0%;
    border-radius: 3px;
    font-size: 12px;
    padding: 3px 5px;
    position: relative;
    width: auto;
    top: -1px;
    line-height: 1;
    letter-spacing: 0px;
    }

    Thanks

    #46591
    @vapvarun

    Hi @tomastd

    please try to use !important after each to override

    Regards

    #46596
    @tomastd

    Sorry, not working.
    Any other option?
    Thaks a lot!

    #46774
    @tomastd

    Any help with this?
    I have tryed editing custom.css in the child theme but it didn’t work either.

    The class is class=”button wangguard-user-report”. Should I change something in de code?

    .wangguard-user-report:before{
    margin: 0px 5px !important;
    color: #FFF !important;
    background: #CCC none repeat scroll 0% 0% !important;
    border-radius: 3px !important;
    font-size: 12px !important;
    padding: 3px 5px !important;
    position: relative !important;
    width: auto !important;
    top: -1px !important;
    line-height: 1 !important;
    letter-spacing: 0px !important;
    }

    Thank you!

    #46779
    @vapvarun

    Hi @tomastd, use following code

    
    .wangguard-user-report{
    margin: 0px 5px !important;
    color: #FFF !important;
    background: #CCC none repeat scroll 0% 0% !important;
    border-radius: 3px !important;
    font-size: 12px !important;
    padding: 3px 5px !important;
    position: relative !important;
    width: auto !important;
    top: -1px !important;
    line-height: 1 !important;
    letter-spacing: 0px !important;
    }
    

    Regards
    Varun Dubey

    #46805
    @tomastd

    Working!!!

    Even if it is easy to customize, I propose to be fixed by default in next theme updates.

    Thanks a lot.

    #46818
    @vapvarun

    Thanks for your suggestion, i will include to our suggestion list.
    I will close this topic.
    Regards
    Varun Dubey

    #47051
    @tomastd

    Sorri Varun.
    In member´s profile cover button options the CSS are the same we touched for the wall. Is anyway to solve this issue?

    The class in the cover is defined as class=”wangguard-user-report wangguard-user-report-id-12″
    The class in the wall is defined as class=”button wangguard-user-report”

    Instead of using .wangguard-user-report{} can we write something to affect only to the concatenated class=”button wangguard-user-report”?

    Thanks!

    #47075
    @vapvarun

    Hi @tomastd, let me check on that, i will update you shortly
    Regards

    #47326
    @tomastd

    I got it! 😉

    Using .wangguard-user-report.button{} works fine. No need to use “!Important”.

    Here is the code I used in custom CSS.

    Regards!

    .wangguard-user-report.button {
    margin: 0px 5px;
    color: #FFF;
    background: #CCC none repeat scroll 0% 0% ;
    border-radius: 3px;
    font-size: 12px;
    padding: 3px 5px;
    position: relative;
    width: auto;
    top: -1px;
    line-height: 1;
    letter-spacing: 0px;
    }

    #47349
    @vapvarun

    Thanks 🙂

Viewing 13 posts - 1 through 13 (of 13 total)
  • The question ‘wangguard css integration’ is closed to new replies.