Jump to content

Search the Community

Showing results for tags 'snippet'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Support
    • Support
    • Common Questions
  • General
    • The Frog Academy
    • General chat
    • Showcase
    • Webinars
  • Technical Forums (How do I...?)
    • Learn / Play / Progress
    • Coding

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


School

Found 1 result

  1. Here's a cute bit of CSS I was asked for to hide the Saturday and Sunday columns in the new look Calendar widget. It's not really worth a whole tutorial, but it uses nth-child as the individual table cells don't have class names <style> div[data-content-uuid="uuid of the widget"] .frogui_components_calendarweekview th:nth-child(7), div[data-content-uuid="uuid of the widget"] .frogui_components_calendarweekview th:nth-child(8), div[data-content-uuid="uuid of the widget"] .frogui_components_calendarweekview td:nth-child(7), div[data-content-uuid="uuid of the widget"] .frogui_components_calendarweekview td:nth-child(8) { display:none; } </style>
×
×
  • Create New...