Author |
Message |
sniperz53
New Member


Joined: Oct 21, 2005
Posts: 8
|
Posted:
Thu Feb 02, 2006 8:33 am |
|
Hey guys it looks like I am coming to you for help once again
Anyways I have been trying to do something for some days now and I cant seem to be able to do it, basically I want logos beneath my side blocks, but not in the actual blocks
http://www.gwonline.net/
That site is an example of what i want to do.
Im not sure if this is plausible within phpnuke but I thought I would check with you guys, who would know if it is
Lastly my current site is www.guildwarsrealm.net
Thanks a ton guys
Sniperz53 |
|
|
|
 |
sting
Involved


Joined: Sep 23, 2003
Posts: 456
Location: Somewhere out there...
|
Posted:
Thu Feb 02, 2006 9:07 am |
|
This would be a good question for Jaded. . .
Only registered users can see links on this board! Get registered or login!
if you can't find the answer here...
-sting |
|
|
 |
 |
Raven
Site Admin/Owner

Joined: Aug 27, 2002
Posts: 17088
|
Posted:
Thu Feb 02, 2006 11:39 am |
|
Only what is in the $content variable will be shown in the block. So, try just using an image tag after the last code in the block. Something like this
Code:
<?
//standard block stuff
?>
<img src="http://somewhere.com/pic.jpg" />
|
Or on top like this
Code:
<img src="http://somewhere.com/pic.jpg" />
<?
//standard block stuff
?>
|
You could also do like this
Code:
<?
//standard block stuff
echo "<img src=\"http://somewhere.com/pic.jpg\" />";
?>
|
|
|
|
|
 |
sniperz53

|
Posted:
Thu Feb 02, 2006 12:49 pm |
|
Raven wrote: | Only what is in the $content variable will be shown in the block. So, try just using an image tag after the last code in the block. Something like this
Code:
<?
//standard block stuff
?>
<img src="http://somewhere.com/pic.jpg" />
|
Or on top like this
Code:
<img src="http://somewhere.com/pic.jpg" />
<?
//standard block stuff
?>
|
You could also do like this
Code:
<?
//standard block stuff
echo "<img src=\"http://somewhere.com/pic.jpg\" />";
?>
| |
Well thanks for the attempt raven but I have tried all of this XD, first one gives me the image at the top, second one gives me the image at the top of the apge as well, and the third gives me the image after every block lol!
I will check out that other site though, thanks anyways  |
|
|
|
 |
Raven

|
Posted:
Thu Feb 02, 2006 1:07 pm |
|
The third should not give you an image after every block since it would be unique to the block the code is contained in. But, in any event, Jaded works with themes and this is not a theme issue, really. She may have done something like this before though, so it's worth a shot. |
|
|
|
 |
jaded
Theme Guru

Joined: Nov 01, 2003
Posts: 1006
|
Posted:
Fri Feb 03, 2006 6:45 am |
|
|
|
 |
jaded

|
Posted:
Fri Feb 03, 2006 8:19 am |
|
I have done this on the grinched theme that I made on my site. Please view it to see it in action. Now, as far as I can tell this will only work on the right hand blocks. IT is better then nothing though.
I simply put this code
Code:<center><IMG SRC="http://www.jaded-designs.com/modules/LinkMe/images/mybutton3.gif"> <IMG SRC="http://www.jaded-designs.com/modules/LinkMe/images/mybutton3.gif"></center>
|
at the very top of the footer.html file inside the theme I wanted to use. It worked like a charm. It must go above all of the other code in footer.html though. This stacks two images on top of eachother.
Good luck!  |
|
|
|
 |
sniperz53

|
Posted:
Fri Feb 03, 2006 8:54 pm |
|
Thanks a ton, that looks alot more professional!!!
I thank you so much!
As well does anyone know of a better encyclopedia module that allows you to index things based on say subjects? |
|
|
|
 |
|