meeting-room-booking-system / mrbs-code

MRBS application code
Other
120 stars 59 forks source link

Remove blue topbar #2824

Open jberanek opened 4 years ago

jberanek commented 4 years ago

Hi

How can I remove the blue topbare and the date and year? I has succeded removing everything else.

Im uses version 1.8.0

/Bruno

Reported by: *anonymous

Original Ticket: mrbs/support-requests/2131

Attachments: https://sourceforge.net/p/mrbs/support-requests/2131/attachment/Capture.JPG

jberanek commented 4 years ago

I don't know how you removed everything else, but the easiest way is to create a custom CSS file (see systemdefaults.inc.php for how to do this) and just add display: none rules for the bits you don't want. For example to remove the blue top bar and the date

.banner,
h2.date {
  display: none;
}

If there are other parts you want to remove you can find out what they are by using your browser's Developer Tools and inspecting the elements.

Original comment by: campbell-m