Quote:
Originally Posted by Raptor
how to change the style of the dark black border - say to a light gray dotted line ?
and how to change the background color of the last post info ?
Thanks in advance
|
Look into the bits
- forumhome_forumbit_level1_post
- forumhome_forumbit_level2_post
Code:
<div id="collapseobj_forumhome_lastpostby_$forum[forumid]" class="smallfont" style="padding:6px; margin-top:6px; border: 1px solid #000000; $vbcollapse[collapseobj_forumhome_lastpostby]" align="$stylevar[left]">$forum[lastpostinfo]</div>
Change the
border: 1px solid #000000 into
border: 1px dotted #555555. For the background; alter the smallfont-class used here, use another class which contains information for a backgroundcolor or just add
background-color: pink to the above code.
Though it's more efficient to put it all into one class, instead of calling a class ?nd putting several other attributes after it. Small mistake from me of not doing so, but that's easy to alter. Could work on that, if people rather like that.
Quote:
Originally Posted by YLP1
How do you change the background of the last post info to like alt2 or alt1? Thanks in advance.
|
Code:
<div id="collapseobj_forumhome_lastpostby_$forum[forumid]" class="smallfont" style="padding:6px; margin-top:6px; border: 1px solid #000000; $vbcollapse[collapseobj_forumhome_lastpostby]" align="$stylevar[left]">$forum[lastpostinfo]</div>
Change the bolded text into
class="alt1" or
class="alt2".