Site logo

Archived topic

Added Lines, but they are not 100% width on Info Template

1 reply · Started by Fayola on November 23, 2022

Viewing posts 1–2 of 2

Used this CSS to add lines to the upper and lower menu sections on the Info Template:

.inside-navigation {
border-top: 1px solid #da917e;
border-bottom: 1px solid #da917e;
}

The problem is that these lines are not 100% width. How do I change this?

Hi Fayola,

The inside-navigation has a max-width. Try adding it to the main-navigation instead. Example:

nav.main-navigation {
    border-top: 1px solid #da917e;
    border-bottom: 1px solid #da917e;
}

This should allow to go from corner to corner.

This archived topic is closed to new replies.