I have a custom-field applied to specific posts, but I want to add two values to one field. How do I do that from the admin side?
CSS
.post-1 {
text-align: left;
padding-left: 50px;
background-position: left center;
float: left;
}
I want to add ‘.bgAlign’ class to the value of ExtraCSS. I tried just adding it but doesnt seem to work.
You can simple append your class after
post-1
with comma separator. It would be look likepost-1,bgAlign,one-more-class
.Use this to output
Changing commas with spaces