XF 1.2 Breadcrumb box ignoring padding inside the main content div

I've seen on a lot of Xenforo forums a breadcrumb box that extends the entire width of the content box, ignoring all padding. I know how to replicate this with my own css, but the thing is that I see this on a LOT of forums, and they are all very different styles, so it's not like they're all using a customization that came with one specific style. is there some sort of option somewhere or a simple template edit that can do this?
 

Attachments

  • breadcrumbfull.webp
    breadcrumbfull.webp
    3.8 KB · Views: 14
The breadcrumbs are inside the pageContent div so the only way to do that is to remove the left and right margins from the pageContent div or move the breadcrumbs out of it.
 
I see that, but all of these forums have the breadbox in the same place as the xenforo default skin:

HTML:
    <div class="pageWidth">
        <div class="pageContent">
                        <div class="breadBoxTop">

That's the source code showing the order that they have their div's in.
 
Top Bottom