Topic #3888 (no title)
0 guests and 0 members have recently viewed this.
The top 3 point earners from 14th Dec 2025 to 21st Dec 2025.
| PDStig |
|
|
|---|---|---|
| Gabri |
|
|
| sholzy |
|
|
There are no events at this time
(Click to enlarge)
#3219 - Comcode page children issues
As for breadcrumbs, if fixed width is off there's more space so the CSS is coded to put them side-by-side with title.
It's always been tricky as what is best really depends on the site, if it has panels, the length of titles, the breadcrumb depth.
In global.css
.global_breadcrumbs {
padding: 7px 0 7px 0;
/*{+START,IF,{$NOT,{$MOBILE}}}*/
/*{+START,IF,{$CONFIG_OPTION,fixed_width}}*/
text-align: {!en_right};
/*{+END}*/
/*{+START,IF,{$NOT,{$CONFIG_OPTION,fixed_width}}}*/
float: {!en_right};
/*{+END}*/
margin-left: 0.5em;
/*{+END}*/
}
change to
.global_breadcrumbs {
padding: 7px 0 7px 0;
/*{+START,IF,{$NOT,{$MOBILE}}}*/
text-align: {!en_right};
margin-left: 0.5em;
/*{+END}*/
}
Templates:
BREADCRUMB_LINK_WRAP, BREADCRUMB_LONE_WRAP
{LABEL*}
-->
{$PREG_REPLACE,:.*$,,{LABEL*}}
I wouldn't want to do by default. People may have multiple pages in a hierarchy sharing a prefix intentionally.