I recently implemented a JavaScript plugin from an external service that comes with its own CSS rules. However, these rules are not compatible with my layout as the width needs to be changed from 540 to 700px:
#chat-container.bbhorizontal .main .booking {
margin-top: 0;
min-width: 540px !important;
}
The path mentioned in Bugzilla is:
<div class="main">
<form name="chat">
<div class="booking">
Despite my attempts like:
#div main.chat.booking {
display: block;
visibility: visible;
min-width: 800px !important important;
margin-top: 0;
}
I have not been successful in resolving this issue. Are there any suggestions on how I can achieve this? Thank you.
While I generally prefer programming in C over dealing with CSS, feel free to refer to the image below for better context: https://i.sstatic.net/M2Mj0.png