css - using BOXY JQuery plugin -
i using following boxy plugin of pages. boxy plugin
i have different style of outer box of boxy popup each page. issue had noticed hardcoded html , css classes in boxy.js file. can please me out , point me right direction? use different styling per page using same boxy plugin.
thanks
you can overwrite css properties if:
- it has more specific selector (eg.
img.myclass
beats.myclass
) - it defined later in code
- you use
!important
in property
though !important
feature misused, causing many developers not it, it's in fact useful when used correctly. when want overwrite 3rd party css example ;)
.myclass { color: red; } .myclass { color: blue !important; /* overwrites red color */ }
Comments
Post a Comment