Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
458 views
in Themes by
How I can make the users page in SnowFlat theme the same as that of Snow theme?

 

Thanks.
Q2A version: 1.7.1
by
Refer / copy all users page classes and rule from Snow to SnowFlat

1 Answer

+1 vote
by

Take a look at the parts of the SnowFlat CSS that start with ".qa-part-form-", they are set to 50% width on the user pages (when the template is .qa-template-user).

Example:

.qa-template-user .qa-part-form-profile {
    width: 50%;
    float: left;
}

.qa-template-user .qa-part-form-activity {
    width: 50%;
    float: right;
}
...