c0nstruct
Forum Replies Created
-
Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] width issues !I finally found the solution to my own version of this problem.
Problem:
When forcing the cell width to prevent uneven columns I need to use overflow:hidden to prevent long event titles from overstepping their boundaries. The overflow:hidden also clips the tooltip, so that was not a good solution.Solution:
Convert the link to a block element and restrict its width and overflow, thus handling this parallell to the tooltip-div, like such:
.grid .tribe-events-event a { width: 60px; display: block; text-overflow: ellipsis; overflow: hidden;}Forum: Plugins
In reply to: [The Events Calendar] [Plugin: The Events Calendar] width issues !Hi There,
Sorry to reopen this, but I found good use for this solution. The thing is that I am struggling with my event DIV’s overflowing the table cells in the grid view. I have tried to add a overflow:hidden which looks good, but breaks the popups when hovering over the event.
I am about to give up but I thought I should give this thread a try. Do you guys have any tips or tricks?
You can see my problem here:
http://ny.bodokajakk.no/kalender/Edit: Here is my relevant CSS
.grid .tribe-events-event { width: 60px; overflow: hidden; text-overflow: ellipsis; }Thanks,
Terje