1

Topic: Which file to edit?

Hello.

I´m customizing my site a little bit and I've decided not to divide member's profiles into seperate sections (tabs).

But when all the information is in one section it is a bit cluttered. So, I was wondering which file I should edit to add breaks between groups.

See picture below:

http://eythor.net/profile.jpg

Thank you!

2

Re: Which file to edit?

i think it is member_sections_card.tpl

3

Re: Which file to edit?

I think it's member_profile.tpl if you use one of default vld's templates.
Instead of just <br /> you could add {group_name} to show group name.

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

4

Re: Which file to edit?

Hey guys.

Thanks for the replies.

radioact you were right that it's member_profile.tpl. But I see now that I can't do much there so I guess I would have to dive into content.css to change anything..

5

Re: Which file to edit?

http://www.w3schools.com/css/css_margin.asp

Give the world the best you have, and the best will come to you.
Tutorials and Mods for VldPersonals  Add CometChat to your vldPersonals site

6

Re: Which file to edit?

Hi gugu.

Problem is that in member_profile.tpl the code goes something like this:

<dl>
<dt>field_name</dt>
<dd>field_value</dd>
</dl>

And when the page is being loaded I guess this code is written (echoed?) few times in a row (once for each field).

So if I add style="margin-bottom:5px" or something like that then it increases the space between all the lines. But I´m only trying to increase the space between few selected lines (sections).

7

Re: Which file to edit?

Add your margin after <!-- BEGIN profile_groups -->
not after <!-- BEGIN profile_fields -->

This way you have margins only for groups.

www.vldMagic.com - first choice customizations help desk
www.vldCrowd.com/radioact - my profile at vldCrowd

8

Re: Which file to edit?

Yay! I got the hang of it wink

Thanks guys!