XF 1.1 Node/Description Spacing?

denisx04

Active member
I'm trying to space my node title and description here is an image

28sr2nn.png



Trying to add a nice little space between the two, any ideas?
 
Have you tried the line-height command for the respective CSS?
I don't use the text descriptions but it should be something like
Code:
.node .nodeText {
line-height: 1.75;
}
Maybe that will work.
.node .nodeDescription
will only do it for the node description (in place of the .nodeText - which does it for all the text if my test was right).
 
Have you tried the line-height command for the respective CSS?
I don't use the text descriptions but it should be something like
Code:
.node .nodeText {
line-height: 1.75;
}
Maybe that will work.
.node .nodeDescription
will only do it for the node description (in place of the .nodeText - which does it for all the text if my test was right).

Worked like a charm, Thanks a bunch Tracy!
 
Top Bottom