Author |
Topic |
D3mon
Senior Member
United Kingdom
1685 Posts |
|
whopperstopper
Starting Member
15 Posts |
Posted - 25 November 2002 : 18:20:33
|
It works great D3MON... Error was in my installation not the code... thanks for all the help! whopper< |
Surf-Masters, Your online source for Surf Fishing the Gulf Coast! |
|
|
joatham
Junior Member
United Kingdom
169 Posts |
Posted - 26 November 2002 : 10:45:57
|
quote: Originally posted by D3mon
Issues: It would be great if the color of the cells in the admin page change when the on/off radio buttons are selected. Unfortunately, my javascript is poor and I can't seem to make this happen.
Hi D3mon, I can't remember if I told you, but I have updated this mod with the dynamically changing color cells which change when the radio buttons are toggled. If you want me to send you a copy of the modified file, let me know by email and I will send the file to you to add to your code.
John< |
|
|
D3mon
Senior Member
United Kingdom
1685 Posts |
|
D3mon
Senior Member
United Kingdom
1685 Posts |
|
joatham
Junior Member
United Kingdom
169 Posts |
Posted - 23 December 2002 : 07:00:32
|
Glad the extra bits worked okay, thanks for the mention < |
|
|
mot
New Member
United Kingdom
70 Posts |
|
msteele
Starting Member
2 Posts |
Posted - 24 January 2003 : 17:17:56
|
I am having a problem with CCS and the site integration mod.
In the include_left I have my websites navigation that includes a CCS for that table. But the CCS is now changing the text (above the forums) navigation, home | topics | login etc. to the same settings as the include_left. The forums text is working fine.
I have tried just about everything I know in inc_header file to no avail... Thoughts??
THANKS !!
Mike< |
|
|
D3mon
Senior Member
United Kingdom
1685 Posts |
Posted - 25 January 2003 : 07:21:18
|
try creating a specific classname for the new links on the left hand side which will override the default css link settings like:
.leftmenulinks A:active, .leftmenulinks A:visited, .leftmenulinks A:link, .leftmenulinks A:hover
{ blah } < |
Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
|
|
stupidity
Starting Member
United Kingdom
49 Posts |
Posted - 25 January 2003 : 10:33:05
|
Got to admit this is a great mod for those sites that use forums as an "add on"
I found it a breeze to install and configure for css and it's made the development of the next version of my website a lot easier
now all I've got to do is convert all the mods I'll be using to css and get rid of redundent tables for Netscape and I might get it finished sometime this century < |
Peter aka Stupidity EuroBility.com |
|
|
Siffan
Starting Member
5 Posts |
Posted - 09 March 2003 : 16:54:27
|
I agree.... This is my most wanted mod ever.
Unfortunately I'm not very good at asp or html (coding in general ) So I can't get it to work the way i want.
The mod installed fine and i have enabled top, left and right area and it's ok, but now i want to insert my topbanner and it is in a table and i can't get it to work.
My inc_site_header.asp looks like this:
<table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td width="140" height="124" background="siftop_left.gif"> </td> <td height="124" background="siftop_center.gif"> </td> <td width="140" height="124" background="siftop_right.gif"> </td> </tr> </table>
The forum pages are moved down but there is nothing to see at the top of the page..... What am I doin' wrong ????< |
Sorry for my English...... I'm Danish |
Edited by - Siffan on 09 March 2003 16:55:51 |
|
|
D3mon
Senior Member
United Kingdom
1685 Posts |
Posted - 09 March 2003 : 17:54:44
|
Hi Siffan and welcome To Snitz Forums.
quote: Originally posted by Siffan <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td width="140" height="124" background="siftop_left.gif"> </td> <td height="124" background="siftop_center.gif"> </td> <td width="140" height="124" background="siftop_right.gif"> </td> </tr> </table> The forum pages are moved down but there is nothing to see at the top of the page..... What am I doin' wrong ????
Your table cells have defined background images but there's nothing in the actual cells, so the browsers assumes they are 0 pixels by 0 pixels in size.
This code might produce the expected results:
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="140"><img src="siftop_left.gif" border="0"></td>
<td><img src="siftop_center.gif" border="0"></td>
<td width="140"><img src="siftop_right.gif" border="0"></td>
</tr>
</table>
Bear in mind also, that support for the 'height' paramater in table cells is 'buggy' at best. Easiest way is to make your siftop_left.gif image 140pixels high and this will autmatically set the height for the rest.< |
Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
Edited by - D3mon on 09 March 2003 17:56:20 |
|
|
Siffan
Starting Member
5 Posts |
Posted - 09 March 2003 : 18:55:52
|
quote: Originally posted by D3mon
Hi Siffan and welcome To Snitz Forums.
quote: Originally posted by Siffan <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td width="140" height="124" background="siftop_left.gif"> </td> <td height="124" background="siftop_center.gif"> </td> <td width="140" height="124" background="siftop_right.gif"> </td> </tr> </table> The forum pages are moved down but there is nothing to see at the top of the page..... What am I doin' wrong ????
Your table cells have defined background images but there's nothing in the actual cells, so the browsers assumes they are 0 pixels by 0 pixels in size.
This code might produce the expected results:
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="140"><img src="siftop_left.gif" border="0"></td>
<td><img src="siftop_center.gif" border="0"></td>
<td width="140"><img src="siftop_right.gif" border="0"></td>
</tr>
</table>
Bear in mind also, that support for the 'height' paramater in table cells is 'buggy' at best. Easiest way is to make your siftop_left.gif image 140pixels high and this will autmatically set the height for the rest.
You're da man.... This is so cool and thx for the welcome. Actually is isn't workin' yet but that's because I moved my pictures to another dir and I'm only about to find out how to link back in folders outside my forum dir. But at least now i see 3 small red crosses
And another question (Now that i got the god here ) Did anyone figure out hov to move the links from the header and to the inc_site_left .< |
Sorry for my English...... I'm Danish |
|
|
Siffan
Starting Member
5 Posts |
Posted - 09 March 2003 : 19:16:23
|
quote: Originally posted by Siffan
quote: Originally posted by D3mon
Hi Siffan and welcome To Snitz Forums.
[quote]Originally posted by Siffan <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td width="140" height="124" background="siftop_left.gif"> </td> <td height="124" background="siftop_center.gif"> </td> <td width="140" height="124" background="siftop_right.gif"> </td> </tr> </table> The forum pages are moved down but there is nothing to see at the top of the page..... What am I doin' wrong ????
Your table cells have defined background images but there's nothing in the actual cells, so the browsers assumes they are 0 pixels by 0 pixels in size.
This code might produce the expected results:
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td width="140"><img src="siftop_left.gif" border="0"></td>
<td><img src="siftop_center.gif" border="0"></td>
<td width="140"><img src="siftop_right.gif" border="0"></td>
</tr>
</table>
Bear in mind also, that support for the 'height' paramater in table cells is 'buggy' at best. Easiest way is to make your siftop_left.gif image 140pixels high and this will autmatically set the height for the rest.
You're da man.... This is so cool and thx for the welcome. Actually is isn't workin' yet but that's because I moved my pictures to another dir and I'm only about to find out how to link back in folders outside my forum dir. But at least now i see 3 small red crosses
And another question (Now that i got the god here ) Did anyone figure out hov to move the links from the header and to the inc_site_left .
Edit: **** I was cheering to early, didn't notice that the picture weren't set as background pictures anymore. They have to be, but i guess i just have to maker a transparent picture at the size i need and use as spacer
< |
Sorry for my English...... I'm Danish |
|
|
UGBC
Junior Member
143 Posts |
Posted - 09 March 2003 : 19:45:02
|
D3mon awesome job, this is probably the most useful mod for me if I could get it to work. I use serverhackers modded forum for a few things, but I think he pushes stuff around so I put the information in but it didn't quite work. this is my home page http://ugbc.org and this is the forums http://ugbc.org/forums/forum/
It installed properly, let me know if you want more info. and thanks so much.< |
|
|
Topic |
|