Breadcrumbs on one line - Joomla! Forum - community, help and support
i'm using template puts breadcrumbs on multiple lines this:
here:
home->
profile
i've search unsuccessfully way have breadcrumbs this:
here: home->profile
is configured in css file or somewhere else?
thanks in advance assistance
here:
home->
profile
i've search unsuccessfully way have breadcrumbs this:
here: home->profile
is configured in css file or somewhere else?
thanks in advance assistance
i believe css property "display: inline-block" missing in css. example, in template protostar, following css available in file template.css.
try introducing css property (display: inline; or display: inline-block;) , see happens.
code: select all
.breadcrumb > li {
display: inline-block;
*display: inline;
*zoom: 1;
text-shadow: 0 1px 0 #fff;
}try introducing css property (display: inline; or display: inline-block;) , see happens.
Comments
Post a Comment