Reply To: A couple of little challenges

Home Forums Support A couple of little challenges Reply To: A couple of little challenges

Home Forums Support A couple of little challenges Reply To: A couple of little challenges

#199277
Tom
Lead Developer
Lead Developer

Hi there,

To overlap the menu, you’ll want to look into absolute positioning in CSS – just be sure to wrap it in a media query so it doesn’t apply on mobile:

@media (min-width: 769px) {
    /* CSS for desktop only in here */
}

To do the borders, you’ll either need to wrap your navigation labels in span elements and then target those elements with CSS, or you’ll need to use a background image and apply it to each navigation item. You can position it to center right using some CSS.