Seeking help with CSS.
I am currently dealing with older code that has its own set of css rules linked to a 'css manager'. Now, I want to integrate jQuery UI
for its appealing dialogues and features.
My inquiry is as follows: There is a css rule like...
#menu-bar{something}
Whereas jQuery UI uses rules such as:
.ui-dialog-titlebar{something2}
Is it possible (without altering jQueryUI stylesheets) to achieve something similar to:
.ui-dialog-titlebar = #menu-bar?
Essentially overwriting .ui-dialog-titlebar with {something} from #menu-bar?
Thank you in advance.
Note: I am unable to simply use
.ui-dialog-titlebar {something}
since {something} varies depending on the 'style manager' being utilized.