#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Jun 8, 2012 16:52:42 GMT -8
That's the part that creates the tab, it's the part you use multiple times to create multiple tabs.
|
|
inherit
166805
0
Oct 19, 2018 6:48:17 GMT -8
La Lune Mauve
Hey, guess what. Japan digs my sexy cat ears
277
May 2011
firelite
|
Post by La Lune Mauve on Jun 9, 2012 14:36:44 GMT -8
but I already have that v.v I'm sorry. I'm just confused about what you want me to do and you're probably confused about what I want to do. But I'm getting assistence on another site so maybe he can help.
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Jun 9, 2012 18:09:20 GMT -8
No worries.. Let's start again from the top. Remove what you currently have then.. Put this in your footer.. <script type="text/javascript"> <!-- // Open/close side tables
function popopen(c) { if(c.previousSibling.className == 'pophidden') { c.previousSibling.className = 'popshow'; } else { c.previousSibling.className = 'pophidden'; } return; } // --> </script> Followed by this.. <style type="text/css"> <!-- .popout { border: 1px solid black;} .pophidden { display: none; } .popshow { background-color: #FFFFFF; width: 100px; } .popclick { cursor: pointer; background-color: #CCCCCC; color: FFOOOO; height: 150px; width: 20px; } --> </style> Edit the above stylesheet for colors, dimensions, borders etc.. Then put this for each tab.. <div class="popout" style="position: absolute; left: 0px; top: 50px;"><table> <tbody> <tr> <td class="pophidden">Cell 1 content</td><td class="popclick" align="center" onclick="popopen(this);">C<br>L<br>I<br>C<br>K<br><br>M<br>E</td> </tr> </tbody> </table> </div> and edit as follows.. The red number is the distance from the top of the screen the tab will appear.. The blue is the contents of the pop-out cell.. The green is the contents of the tab.. This code may look the same, but there is a small difference.
|
|
inherit
166805
0
Oct 19, 2018 6:48:17 GMT -8
La Lune Mauve
Hey, guess what. Japan digs my sexy cat ears
277
May 2011
firelite
|
Post by La Lune Mauve on Jun 9, 2012 21:08:53 GMT -8
It changed! Now it's on the actual side of the forum. But I've been noticing that there's a line going around the cell and when I pop it out and then pop it back in, it leaves a box around where it was when it was out [preview]. Also, I'd like it to sort of "float" like the peekaboo side tables, so it's there all the time. And (this might be a bit too much too fast) I started plugging in my side box codes, and noticed it's not supporting SubDevo's avatar/pm's anywhere code :/
|
|
#00AF33
Official Code Helper
19529
0
1
Nov 19, 2012 14:18:28 GMT -8
Todge
**
17,324
January 2004
todge
|
Post by Todge on Jun 10, 2012 6:35:31 GMT -8
What browser are you using, as it collapses fine for me..
Before, you said you wanted the tabs to scroll with the page, is this no longer the case?
|
|
inherit
166805
0
Oct 19, 2018 6:48:17 GMT -8
La Lune Mauve
Hey, guess what. Japan digs my sexy cat ears
277
May 2011
firelite
|
Post by La Lune Mauve on Jun 10, 2012 13:33:02 GMT -8
I'm using IE
and when I said scroll i meant float like the peekaboo side tables. That's why I've been mentioning it the whole time.
|
|
inherit
166805
0
Oct 19, 2018 6:48:17 GMT -8
La Lune Mauve
Hey, guess what. Japan digs my sexy cat ears
277
May 2011
firelite
|
Post by La Lune Mauve on Jun 13, 2012 12:40:06 GMT -8
Hey, I'm getting problems with the coding now on Firefox. Both this code and the peekaboo side tables refresh the entire page each time I click on the "click me" part of it. athrivingworld.proboards.com/
|
|
inherit
Official Code Helper
65613
0
1
Oct 22, 2024 1:56:19 GMT -8
Chris
"'Oops' is the sound we make when we improve"
9,023
December 2005
horace
RedBassett's Mini-Profile
|
Post by Chris on Jun 13, 2012 13:45:55 GMT -8
Hey, I'm getting problems with the coding now on Firefox. Both this code and the peekaboo side tables refresh the entire page each time I click on the "click me" part of it. athrivingworld.proboards.com/If you right-click the page and click VIEW SOURCE in Firefox then you'll see the problem, every single link in the affiliates table is missing a properly closed end anchor tag: </a>this mean anything following that unclosed link will be considered part of the clickable link until it encounters a new link or an element that cannot be part of a link. In this case the last bad link is eating up everything until it hits the "Click Here To Make This Board Ad-Free" link at the bottom of the page. Make sure you properly close your links.
|
|
inherit
166805
0
Oct 19, 2018 6:48:17 GMT -8
La Lune Mauve
Hey, guess what. Japan digs my sexy cat ears
277
May 2011
firelite
|
Post by La Lune Mauve on Jun 14, 2012 20:17:07 GMT -8
Alright, that's fixed. Thanks! And I answered you in the cbox about the test site.
|
|
inherit
166805
0
Oct 19, 2018 6:48:17 GMT -8
La Lune Mauve
Hey, guess what. Japan digs my sexy cat ears
277
May 2011
firelite
|
Post by La Lune Mauve on Jun 21, 2012 9:10:22 GMT -8
Thanks so much eton! The code is working great Request Done
|
|