• I am surprised, how you missed to solve the problem :

    in embed-any-document/css/embed.css
    there are such codes:

    .box {
        display: none;
        padding: 20px;
        margin: 30px 0;
    }
    
    a.go-back {
            ..........
    }
    
    .box label {
          .........
    }

    why are you using non-targeted css? it messes up all our dashboard with generic classes.
    instead, you should use:

    .your_parent_basename .box {
    
    }

    etc…

    please, wrapp all your css with your plugins base div.

    • This topic was modified 8 years, 5 months ago by tazotodua.

The topic ‘simple, but rude CSS issue’ is closed to new replies.