inherit
191486
0
Apr 18, 2013 13:31:12 GMT -8
somaticsilence
2
March 2013
somaticsilence
|
Post by somaticsilence on Apr 17, 2013 15:30:10 GMT -8
Not sure if this is the right area to post this, and I'm sorry if it isn't. I'm not particularly good at coding past basic font tags so trying to get a site up is sort of throwing me off You can view the terribly under construction work here: rpg board1)What I need to add to the coding is a (c) to at the bottom to say where the layout came from and the general information and what not. How is this done? 2)I would like for members to be able to access parts of information(IE: vampire-house marking) without leaving the page-so same page links. How would this work? 3)I have seen a few sites with side bars with member population, current events and weather, are these just sidebar add ons or are they using plug ins or..?
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Apr 17, 2013 19:57:18 GMT -8
1. For the copyright symbol you could just copy this and paste it and it should remain as it is here: copyright © 2000 The actual symbols are: ©
or
© 2. Not sure if this is what you mean but adding target="_blank" will open a new tab or window: <a href="http://paviii.freemessageboards.com/" target="_blank">link one</a> 3. By member population do you mean statistics like I have on this test site. If so, you are welcome to use mine. There is a daily weather generator here: wormocodes.proboards.com/index.cgi?board=codedb&action=display&thread=119Not sure exactly what you need to know about current events. Can you elaborate?
|
|
inherit
191486
0
Apr 18, 2013 13:31:12 GMT -8
somaticsilence
2
March 2013
somaticsilence
|
Post by somaticsilence on Apr 17, 2013 21:55:21 GMT -8
I meant where I would put the copyright code in the layout itself, since I tried placing it at the bottom but nothing showed up. I want the links to NOT open a new window, is that possible with the new proboards? I tried various codes, but I cant seem to get anything to work.
That statistics would work thank you for letting me use it!
|
|
inherit
I need a new CT, thinking.... [insert Jeopardy theme song here]
110769
0
Aug 21, 2021 0:07:21 GMT -8
Tumbleweed
20,825
September 2007
tumbleweed
|
Post by Tumbleweed on Apr 18, 2013 21:43:54 GMT -8
Wow, I didn't even notice you have a V5 site. I just barely glanced at it and took it for V4. Silly me but I have to say, you've done a great job with your forum as I imagine it looked much like this in V4.
Here is the statistics. You should be able to just add that (css included) directly in the side bar content part. You can remove the red if you want the title in the proper title place provided by the plug in.
<style> .the_classes{ font-family: verdana; width: 110px; line-height: 14px; padding: 2px; margin-bottom: 3px; padding-left: 4px; margin-left: 2px; } .female{ background-color: #f8e8ec; color: #5d4727; font-family: arial; border-left:6px solid #CC6699; line-height: 14px; padding: 2px; margin: 2px;
} .males{ background-color: #f8e8ec; color: #5d4727; font-family: arial; border-left: 6px solid #3a65a9; line-height: 14px; padding: 2px; margin: 2px; } .total{ background-color: #f8e8ec; color: #5d4727; font-family: arial; letter-spacing: 0px; line-height: 14px; padding: 2px; margin: 2px; } .my_titles{ font-family: 'Petit Formal Script', cursive; font-size: 1.3em; font-weight: bold; padding: 2px; } </style>
<br /><br /> <!-- ===== STATS ===== --> <div class="my_titles">Statistics</div> <table border="0px"> <tr> <td valign="top" width="90px">
<!--1--><div class="the_classes" style="border-left: 6px solid #0000ff;">Group 1</div> <!--2--><div class="the_classes" style="border-left: 6px solid #ff0000;">Group 2</div> <!--3--><div class="the_classes" style="border-left: 6px solid #ff00ff;">Group 3</div> <!--4--><div class="the_classes" style="border-left: 6px solid #ffff00;">Group 4</div>
<!--T--><div class="the_classes" style="padding-left: 6px; border: none;">Total</div>
</td><td valign="top">
<!--1--><div class="female"><center>03</center></div> <!--2--><div class="female"><center>03</center></div> <!--3--><div class="female"><center>00</center></div> <!--4--><div class="female"><center>01</center></div>
<!--T--><div class="female"><center>07</center></div>
</td><td valign="top">
<!--1--><div class="males"><center>01</center></div> <!--2--><div class="males"><center>04</center></div> <!--3--><div class="males"><center>01</center></div> <!--4--><div class="males"><center>01</center></div>
<!--T--><div class="males"><center>07</center></div>
</td><td valign="top">
<!--1--><div class="total"><center>04</center></div> <!--2--><div class="total"><center>07</center></div> <!--3--><div class="total"><center>01</center></div> <!--4--><div class="total"><center>02</center></div>
<!--T--><div class="total"><center>14</center></div>
</td> </tr> </table>
Do you want the copyright at the very very bottom or below the forum but above the ProBoards links. Just want to clarify exactly where on the bottom.
Normally, I'd say just remove the target="_blank" part below ....
<a href="http://paviii.freemessageboards.com/" target="_blank">link one</a>
but I'm rereading #2 and I think I'm confused and am not sure if that is what you want. If they aren't leaving the page then the link would have to go somewhere to an area on the page. If I'm not understanding is there a site that has this that you could link to so I understand exactly what you mean. Thanks.
|
|