"Floating Table"
Minnemann Offline
Junior Member
**
Posts: 25
Joined: May 2010
Post: #1
"Floating Table"
What he wanted was a table that appears at the top of the page where we were going down the same page. If it were possible with the function + and - to hide or show this table leaving only the threaded or not.
06-17-2010 12:06 AM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #2
RE: "Floating Table"
I'm not quite sure what you meant. Can you explain it more?

06-17-2010 01:45 AM
Find all posts by this user Quote this message in a reply
leefish Offline
Hamster
*****
Posts: 1,009
Joined: Apr 2010
Post: #3
RE: "Floating Table"
Do you mean something like this?

http://www.dynamicdrive.com/dynamicindex...http://www.dynamicdrive.com/dynamicindex1/stat


[Image: leelink.gif]
MYBB1.6 & XThreads
06-17-2010 02:34 AM
Visit this user's website Find all posts by this user Quote this message in a reply
Minnemann Offline
Junior Member
**
Posts: 25
Joined: May 2010
Post: #4
RE: "Floating Table"
Yeah, leefish but with a button to hide.
06-17-2010 03:17 AM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #5
RE: "Floating Table"
For a button hide, you can use a table structure like this:

HTML Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
	<tbody>
		<tr>
			<td class="thead">
				<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['ftable']}.gif" id="ftable_img" class="expander" alt="[-]" title="" /></div>
				<div><strong>Title Here</strong></div>
			</td>
		</tr>
	</tbody>
	<tbody style="{$collapsed['ftable_e']}" id="ftable_e">
		<tr>
			<td class="trow1" align="center">
				Contents Here
			</td>
		</tr>
	</tbody>
</table>


For the "float" thing, as an alternative, you can use CSS for that.


06-17-2010 05:04 AM
Find all posts by this user Quote this message in a reply
Minnemann Offline
Junior Member
**
Posts: 25
Joined: May 2010
Post: #6
RE: "Floating Table"
Aque code shown by the leefish does not work: S
06-17-2010 05:09 AM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #7
RE: "Floating Table"
You can use position css properties to make it "float" if you don't want to use javascript.

06-17-2010 05:23 AM
Find all posts by this user Quote this message in a reply
Minnemann Offline
Junior Member
**
Posts: 25
Joined: May 2010
Post: #8
RE: "Floating Table"
How I do that? I want on Upper right corner.
06-17-2010 07:35 AM
Find all posts by this user Quote this message in a reply
RateU Offline
Administrator
*******
Posts: 2,350
Joined: Mar 2010
Post: #9
RE: "Floating Table"
Try something like this:

HTML Code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div style="width: 200px; position: fixed; right: 5px; top: 5px;">
	<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
		<tbody>
			<tr>
				<td class="thead">
					<div class="expcolimage"><img src="{$theme['imgdir']}/collapse{$collapsedimg['ftable']}.gif" id="ftable_img" class="expander" alt="[-]" title="" /></div>
					<div><strong>Title Here</strong></div>
				</td>
			</tr>
		</tbody>
		<tbody style="{$collapsed['ftable_e']}" id="ftable_e">
			<tr>
				<td class="trow1" align="center">
					Contents Here
				</td>
			</tr>
		</tbody>
	</table>
</div>


06-17-2010 07:42 AM
Find all posts by this user Quote this message in a reply
leefish Offline
Hamster
*****
Posts: 1,009
Joined: Apr 2010
Post: #10
RE: "Floating Table"
(06-17-2010 05:09 AM)Minnemann Wrote:  Aque code shown by the leefish does not work: S

Sorry, I did not check the code, nor was it my intention to recommend it. I was just trying to clarify what you wanted. It always helps when asking for advice/help on a mod/plugin etc to give a link to an example or a screenshot. That way we can see what you want which can help with language barriers as not all of us speak English as a first language Smile


[Image: leelink.gif]
MYBB1.6 & XThreads
06-17-2010 08:33 AM
Visit this user's website Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

 Standard Tools
Forum Jump: