Indents and "construction banner"

Hello,

So, here are my questions:

1.

20090110-epjwxjn79yq86w92bhb2y6eqrh.jpg

The bottom two sub-forums are inside the third from the bottom sub-forum, but in this view they don't look like it.

My question is how to get all sub-forums of sub-forums to be indented under its "father forum"

2. I'm not sure if this is a Aqua-soft theme specific question or not:

After my forum started using the Aqua-soft skin, whenever the other admin (who did the maintenance) was about to perform maintenance he enabled this construction banner across the top of the site. It was yellow and black and stretched the width of the site. It was just thick enough to hold one line of text. It believe its similar to the "notice feature" in VB.

My question is how to enable it. The reason i'm asking here is because I believe its part of the Aqua-soft theme. Excuse me if its not.

Thank you, any help will be greatly appreciated!!

Paul

#519949

If you purchased the skin the through this site your account should automatically gain access to that forum. Feel free to pm me the paypal details you used to purchase it and I'll be happy to upgrade your account status.

I'll have to lock this thread since we don't offer support for the skin in this part of the forum.

#520245

okay, i think i can bump this now that i have have been verified as a "Subscriber" and the thread has been moved and re-opened.

soo... bump please :)

#522623

Hey Paul, can you take a pic of what the sub forums are supposed to look like on the default vb skin? The sub forums here don't act the way they do on your forums.

#522627

yep, here we are:

in admincp:

picture2ce8.png

and in a standard skin:

picture1gb0.png

#522629

This one involves editing a few templates and adding a line to the css.

Go ahead and add the following to the css.

.childsub .subpad { padding-left: 40px; }

In the forumhome_forumbit_level1_post template, find

<if condition="$childforumbits">
<tbody>
$childforumbits
</tbody>
</if>

Replace with

<if condition="$childforumbits">
<tbody class="childsub">
$childforumbits
</tbody>
</if>

In the forumhome_forumbit_level2_post template, find

	<td valign="top"><img src="../../unavailable.html" border="0" alt="" id="forum_statusicon_$forum[forumid]" /></td>

Replace with

	<td class="subpad" valign="top"><img src="../../unavailable.html" border="0" alt="" id="forum_statusicon_$forum[forumid]" /></td>

And that should do it.

#522634

Great, thank you very much timan!

I'm going to do this later today.

But i do have one question;

Go ahead and add the following to the css.

.childsub .subpad { padding-left: 40px; }

Where do I add this? within admincp, or on the server?

In the header? admincp->style manager->common templates->header ?

or to some file on the server?

and does it matter where i insert that code? at the beginning, end, middle?

Thank you!

A quick reply would be greatly appreciated, i'm tight for time to when the schedualed mainence is going to be performed.

#524060

Just add it to the main css area.

When you're in the style manager, expand the drop down next to the aqua-soft skin, and select main css.

picture1ea5d8.png

Then scroll all the way down to the bottom, and you should see an area for "Additional CSS Definitions", just add that line at the bottom of that css.

That should do it.

#524061

wow timan!

Thank you very much!

Now i know what i'm doing!

Thanks again for all your help and very fast responses!

#524063