Page 1 of 1
Portal column styles
Posted: 14. April 2012 02:28
by Crocodile
The new portal is an excellent piece of work, thanks.
I can't help but notice that the left and right columns use the same style as the center column. Is there a way I can change that because the look of it in Prosilver is way too blue?
I would prefer to have the left and right columns styled as in the left image below.
Again, thanks for the new portal.
Re: Portal column styles
Posted: 14. April 2012 10:36
by archivar
open: root/styles/prosilver/template/portal/_block_config.html
Find
Tip: This may be a partial find and not the whole line.
Code: Select all
<!-- DEFINE $LR_BLOCK_H_L = '<div class="forabg"><div class="inner"><span class="corners-top"><span></span></span><ul class="topiclist"><li class="header"><dl><dt style="padding: 0px 0px 2px; white-space: nowrap; margin-bottom: 0px; margin-top: 0px;">' -->
<!-- DEFINE $LR_BLOCK_H_R = '</dt></dl></li></ul><ul class="topiclist forums"><li><dl><dd style="border-left: 0px; width: 100%;"><div style="text-align: left; margin: 5px 5px 5px 5px">' -->
<!-- DEFINE $LR_BLOCK_F_L = '</div></dd></dl></li></ul>' -->
Replace with
Tip: Replace the preceding line(s) to find with the following lines.
Code: Select all
<!-- DEFINE $LR_BLOCK_H_L = '<div class="panel bg3"><div class="inner"><span class="corners-top"><span></span></span><h3>' -->
<!-- DEFINE $LR_BLOCK_H_R = '</h3>' -->
<!-- DEFINE $LR_BLOCK_F_L = '' -->
They can also see here:
knowledge/kb_show.php?id=45
Re: Portal column styles
Posted: 14. April 2012 19:58
by Crocodile
Perfect! Thanks Archivar.