Do you have this issue with your Moodle navigation where long page names overlap with the navigation drop down list?

All we need to do to fix this is apply a little bit of CSS and all will be forgiven.

By looking at the HTML tags in the navigation you will find (for the Boost theme) that the navigation links have an ID of prev-activity-link and next-activity-link.

Adding the following code to the Theme CSS will force the page names to wrap without overlapping across the navigation drop down list.

#prev-activity-link{font-size:small;white-space: pre-wrap;text-align: left;}#next-activity-link{font-size:small;white-space: pre-wrap;text-align: right;}

Site Administration >  Appearance > (Select your theme)

Then add the CSS to the Theme CSS.