Amaury
Well-known member
How can I accomplish what vBulletin has by default? Where I put the red lines is where I want the borders.
Style property?
Style property?
.node .nodeInfo.primaryContent{
border-left: 5px solid red;
border-right: 5px solid red;
}
.nodeList .linkNodeInfo {
border-left: 5px solid red;
border-right: 5px solid red;
}
EXTRA.css
should work for forums. Page nodes will not show with that and you have to addCode:.node .nodeInfo.primaryContent{ border-left: 5px solid red; border-right: 5px solid red; }
Code:.nodeList .linkNodeInfo { border-left: 5px solid red; border-right: 5px solid red; }
You will have go play with the sizes some and the border for the forum lists overlay it but that should get you started.
The "Frequently Asked Questions" in the attached image.
View attachment 64398
http://xenforo.com/community/threads/how-to-change-almost-anything-quickly-and-easily.33239/
If your going to be doing styling, you really should look into this tutorial on how to use built dev tools in your browser
This should work (courtesy of Chrome Inspector)
.discussionListItems {
border-left: 5px solid red;
border-right: 5px solid red;
}
This should work (courtesy of Chrome Inspector)
Code:.discussionListItems { border-left: 5px solid red; border-right: 5px solid red; }
What... you wanted me to do it all for ya'?Got this resolved last night by adding margin-right: -2px to @Tracy Perry's code for the discussion list.
.sectionFooter {
margin-right: -2px;
}
We use essential cookies to make this site work, and optional cookies to enhance your experience.