BuddyBoss Home – Web Support Forums Themes Boss. theme Remove Text Shadow In Login Submit Button

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

    #54404
    @ryan-valdez

    I have never been able to figure out how to edit the css of the login page for Boss theme. It has a text shadow that I don’t like on the Login button on the text that I want removed.

    What css can I add to my child theme css file to remove that text shadow?

    Thank you.

    Image attached

    Answers

    #54412

    Anonymous
    @

    Hi @ryan-valdez, Please add these following css into your child theme’s custom css

    
    #login form p.submit input {
        text-shadow: none !important;
    }
    

    Regards
    Pallavi

    #54430
    @ryan-valdez

    I tried this but didnt get the text shadow off. I have tried other css tags but still havent been able to get to it

    @pallavl

    #54444

    Anonymous
    @

    I’ve also tried every css imaginable with no luck.

    #54644

    Anonymous
    @

    Hi @ionprojekt @ryan-valdez
    Please add following codes inside your child theme functions.php

    
    add_action('login_head','add_css',99999);
    function add_css(){
    echo '<style>
    #login form p.submit input {
        text-shadow: none !important;
    }
    </style>';
    }
    

    Regards
    Varun Dubey

Viewing 5 posts - 1 through 5 (of 5 total)
  • The question ‘Remove Text Shadow In Login Submit Button’ is closed to new replies.