Feel a little guilty posting this here - as I know it is just a simple CSS question... but I'd like to remove the hour labels from the left side of my week view calendar.
We aren't using the calendar to show actual times things are happening - just to show that things are happening for some portion of the day.
What do I need to do with the CSS to just remove the hour labels?
Thank you Skuiders!
We aren't using the calendar to show actual times things are happening - just to show that things are happening for some portion of the day.
What do I need to do with the CSS to just remove the hour labels?
Thank you Skuiders!
-
3,176 Points
- happy!
Posted 5 years ago
Rob Hatch, Official Rep
-
44,988 Points
Kaede. Here are two CSS statements you can add to your page:
/* hide the hour label */
td.nx-cal-week-hour-label {
display: none;
}
/* set the row to 0 pixels wide */
th.nx-cal-week-corner {
width: 0;
}
-
3,176 Points
Things get kind of funky when I do that. I can't put events in the Friday slot and the drag and drop gets generally confused.
Rob Hatch, Official Rep
-
44,988 Points
Well FOO. I'm sorry. It looks like a simple CSS hack will not suffice. What you are trying to do doesn't look like it is easily feasible.
-
3,176 Points
what about just changing the text to white so it doesn't show up?
-
3,176 Points
:)
What about removing the hour picker dropdown?

What about removing the hour picker dropdown?

Rob Hatch, Official Rep
-
44,988 Points
I think you should be able to find those divs and overwrite thier css with "Display:none;" But as we saw before, that isn't always reliable...