Log in

View Full Version : Adjusting space between childforum names and mod names


mp3president
04-23-2017, 05:46 AM
Hi there,

Can someone help me with a little problem.
On my forum i did not wanted to see the subforums at forumhome.
However, when i set the debt of subforums to "0" the moderators and the names of the subforum are to tight. There is little space between them. See image below.

https://vborg.vbsupport.ru/external/2017/04/3.jpg

Can someone help me make more space between them???

Kind regards.:confused:

MarkFL
04-23-2017, 01:00 PM
Try adding the following class selector to your "additional.css" template:

.moderators {
margin-top: 5px;
}

Change the "5" to suit your preference. :)

mp3president
04-24-2017, 03:54 AM
Thanks for your help.

Have done that, however it changes nothing.
I put is at the end of the template (below)

Do i have to put it somewhere else to make it work?

MarkFL
04-24-2017, 04:02 AM
As long as you put it in the "additional.css" template, anywhere in the template (except inside another selector) will work.

Try changing it to:

.moderators {
margin-top: 5px !important;
}

mp3president
04-24-2017, 04:07 AM
Ok,

Tried also the second code, but didn't work :(
Not even a millimeter

MarkFL
04-24-2017, 04:10 AM
Can you give me a link to the page where it's not working?

mp3president
04-24-2017, 04:11 AM
There is this code in it

#pictures .blockbody .blockrow, #group_discussion_inlinemod_form .blockbody .blockrow {
border-color:#000 #000 #000;
border-style:solid;
border-width:1px;
}

Inline mod, but changed the px to 5 but also didn't work

MarkFL
04-24-2017, 04:12 AM
Also, are you sure you are adding to the template of the correct style?

MarkFL
04-24-2017, 03:18 PM
We got the issue ironed out...CSS issues with the OP's custom style prevented using margins, so padding is used as a quick workaround instead. Also, malformed code in the "additional.css" effectively comments out any code added to the bottom of the template.