[info] CSS - phpBB Forum - Breadcrumbs - How to rotate '‹' sign and make it '›' sign
Posted: Mon Aug 16, 2021 10:10 am
I tried to add rule
but it didn't make it.
I finished with changing the content proprtey, and it works.
Home › Board index › Everything › Off-topic discussion
transform: rotate(180deg)
Code: Select all
.breadcrumbs .crumb::before {
content: '\2039';
font-weight: bold;
padding: 0 0.5em;
transform: rotate(180deg);
}
I finished with changing the content proprtey, and it works.
Code: Select all
.breadcrumbs .crumb::before {
content: '\203A';
font-weight: bold;
padding: 0 0.5em;
}