That's the default XF2 template with some color changes, there are no outdated templates.1. Did you update your old XF1.5 style to an XF2 version?
2. Have you checked for outdated templates?
.p-pageWrapper .node-extra {
display: table-cell;
vertical-align: middle;
width: 280px;
padding: 10px;
font-size: 13px;
background-color: rgb(242, 223, 255);
border-radius: 15px 0px 0px 15px;
}
@media (max-width: @xf-responsiveMedium) { .p-pageWrapper .node-extra { display: block; } }
It's amazing when you are doing a major upgrade what changes made are quickly forgotten! lolWhen you add things like this:
Code:.p-pageWrapper .node-extra { display: table-cell; vertical-align: middle; width: 280px; padding: 10px; font-size: 13px; background-color: rgb(242, 223, 255); border-radius: 15px 0px 0px 15px; }
It's no longer considered the default style (default = unedited)![]()
I corrected my CSS. I was using Google Chrome inspector and copied some of the desktop CSS settings. Works fine like this below:When you add things like this:
Code:.p-pageWrapper .node-extra { display: table-cell; vertical-align: middle; width: 280px; padding: 10px; font-size: 13px; background-color: rgb(242, 223, 255); border-radius: 15px 0px 0px 15px; }
It's no longer considered the default style (default = unedited)
Add this to your extra.less template
Code:@media (max-width: @xf-responsiveMedium) { .p-pageWrapper .node-extra { display: block; } }
Should adjust it for mobile
.p-body-main {
background-color: white;
border-radius: 35px;
}
.node-extra {
background-color: #f2dfff;
border-radius: 15px 0px 0px 15px
}
.p-body-inner {
background-color: white;
}
We use essential cookies to make this site work, and optional cookies to enhance your experience.