Find CSS Selector

CSS Selector is a very interesting concept in CSS — it defines which part of your website can be replaced or have a Navi+ menu inserted (either before or after it).

Here are some examples of CSS Selectors you can use:

#header           /* The header area */
.navbar           /* The main navigation bar */
.footer           /* The footer section */
.main-content     /* The main content container */
.product-gallery  /* The product image section */
div#menu-wrapper  /* A specific div with ID “menu-wrapper” */
section.hero      /* The hero section at the top of the page */

Follow the instructions below to find the correct CSS Selector on your website.