RM 1.0 Avatar margin-top

rdn

Well-known member
css code to fix this?
I guess it's using the main xenforo class.
 

Attachments

  • Screenshot from 2013-03-27 13:18:12.webp
    Screenshot from 2013-03-27 13:18:12.webp
    16.1 KB · Views: 17
Change the below section in resource_view_header.css
from:
Code:
    .resourceInfo .avatar
    {
        float: left;
        margin-right: 10px;
    }
to:
Code:
    .resourceInfo .avatar
    {
        float: left;
        margin-right: 10px;
        margin-top: 15px;
    }

Also, for the Download Now button, change the below section in resource_view_header.css
from:
Code:
    .resourceInfo .primaryLinks
    {
        float: right;
        margin-left: 10px;
        min-width: 180px;
    }
to:
Code:
    .resourceInfo .primaryLinks
    {
        float: right;
        margin-left: 10px;
        margin-top: 15px;
        min-width: 180px;
    }

There are a few other places where the CSS isn't quite right with not using the default XenForo template too.
 
  • Like
Reactions: rdn
Top Bottom