Can you tell me how to add a solid thick line between the two horizontal sections of the footer? Between the links section in the footer and the social section of the footer?
Hi there,
You can do this by adding some custom CSS. Please try this in the Global CSS:
.x-colophon.bottom .x-nav:before {
content: "";
max-width: 500px;
height: 2px;
background-color: rgba(255,255,255,0.7);
display: block;
margin: 0 auto 30px;
}
You can find more info on how to check for CSS selectors here.
Then information about writing your custom CSS here.
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.