Hello, i would like to know if it’s possible to make the area with the breadcrumbs smaller? As in make the content box i have get closer up to the breadcrumb section to make it look less spaced? See attached image
I figured it out by adding this code to my custom css:
.x-breadcrumb-wrap {
margin-bottom: -35px;
}
Hi Tom,
Glad you have figured it out.
Although, it is not recommended to use negative margin. The space is added on the content box container not on breadcrumbs. So we have to adjust it there. Try this CSS instead:
.x-container.offset {
margin-top: 5px; /* This is 40px by default*/
}
Note that CSS will work sitewide. If you intend to just adjust it on specific page, please share the URL of the page so we can adjust the CSS.
The following might help:
- Intro to CSS - https://goo.gl/mFuWQT
- How to get CSS selectors - https://goo.gl/BmoH39
- Get Started With Viewing And Changing CSS - https://goo.gl/7xFhDa
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.