Results 1 to 2 of 2

Thread: Skip_navigation

  1. #1
    User Carolina's Avatar
    Join Date
    09-05-12.
    Location
    London
    Posts
    99

    Default Skip_navigation

    I just added the navigation module into the layout and I get a menu published with first item being skip navigation. Where did that came from?

    Thanks!.
    Carolina

  2. #2
    Community-Moderator xchs's Avatar
    Join Date
    06-19-09.
    Posts
    1,287

    Default

    The purpose of the "Skip navigation" link is to improve the accessibility of your site. Skip links allow site visitors to skip over certain page elements and are most useful when it comes to navigating web pages with the keyboard.

    Just format those links with the CSS class "invisible" accordingly:
    Code:
    .invisible {
        display: inline;
        height: 0;
        left: -1000px;
        overflow: hidden;
        position: absolute;
        top: -1000px;
        width: 0;
    }
    Contao Community Moderator
    → Support options

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •