mattlewis92 / angular-bootstrap-calendar

A port of the bootstrap calendar widget to AngularJS (no jQuery required!)
https://mattlewis92.github.io/angular-bootstrap-calendar/
MIT License
798 stars 367 forks source link

Hide week number box #611

Closed AfarsheziF closed 7 years ago

AfarsheziF commented 7 years ago

Hi there, Is it possible to hide the week number box? I've tried to hide .cal-week-box with no luck /: Thanks!

burtek commented 7 years ago

Have you tried hiding #cal-week-box? It's the id, not the class :) #cal-week-box { display: none !important; } works for me :)

The other idea would be to edit calendarMonthCell.html template and remove lines 40-42.

AfarsheziF commented 7 years ago

cal-week-box { display: none !important; } working!

Thanks :)!

MargaretKrutikova commented 6 years ago

The only thing that made it work for me was setting display: none on .cal-week-box-cell. The markup has probably changed in the last version ...