clarkwinkelmann
Thanks for reply.
About the question. Has no effect, the code is ok in the custom CSS field.
About clear Flarum Cache do it in the admin panel but nothing change.
About editing the custom CSS also made and re-save in admin panel but nothing change.
I have also gone a little further. Testing with a new Flarum installation in Freeflarum.com because now they are using v1.2.0 . Paste the same code that I have and the same... nothing change. :-/
I understand that if the update is high maybe from v1 to v2 it can break all custom CSS but if change is "minimal" and the same base...
THIS IS THE CODE NO WORKING FOR ME IN 1.2.0
Author label
div.PostStream div.PostStream-item:not(:first-child) article.CommentPost.Post.Post--by-start-user .Post-header h3:after
{
content: "Author";
background: #F05D1D;
border-radius: 4px;
padding-left: 10px;
padding-right: 10px;
color: #fff;
margin-left: 14px;
}
Frames Login Buttons
#header-secondary > ul > li.item-logIn > button[title=" Acceder"] {
border: 1px solid #E7672E;
margin-left: 10px;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
transition-duration: 1s;
color: #E7672E;
border-radius: 3px;
width: 90px;
text-align: center;
font-weight: 600;
}
#header-secondary > ul > li.item-signUp > button[title=" Regístrate"] {
border: 1px solid #4D698E;
margin-left: 10px;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
transition-duration: 1s;
color: #4D698E;
border-radius: 3px;
width: 90px;
text-align: center;
font-weight: 600;
}
@media (max-width: 767px) { #header-secondary > ul > li.item-logIn > button[title=" Acceder"] {margin-top:10px; margin-left:0;}
#header-secondary > ul > li.item-signUp > button[title=" Regístrate"] {margin-left:0;
}}