XF 1.4 How can I put the button on the right side? [CSS] [SOLVED]

I have this customisation: https://xenforo.com/community/threads/button-post-new-thread-at-homepage.90557/#post-880152
to show that button in homepage just next to the nodes, like in my homepage. (link in my signature)
everything is perfect, just I would like to put that button, (sub-forum) in the right side.
so, I need a new css code. :coffee:
I'm not sure where exactly you are supposed to put the code, although maybe @Brogan can help you with this. Although I was thinking about "float: right;", but again, I don't know exactly where you would put that. You would probably just have to add in custom EXTRA.css code, or try and find the designated CSS within one of the node templates.
 
Try putting this on EXTRA.CSS:
Code:
div.nodeInfo.forumNodeInfo.primaryContent a.callToAction {
    position: absolute;
    top: 15px;
    right: 0;
}
 
Last edited:
Top Bottom