Click to See Complete Forum and Search --> : I wonder...
DanUK
08-05-2003, 10:23 AM
Hello there.
I'm not sure if i'm posting this in the right area, if i'm not, sorry.
I've been searching the net now for weeks and weeks, and there some decent templates out there. However, does anyone happen to know a site that has the 'php' style templates? all of those always look so modern and nice.
Sites like http://searchirc.com are the type i'm looking for.
If you happen to know where I can find things like this, please please help.
Thank you very much.
PeOfEo
08-05-2003, 03:13 PM
what do you mean 'php' style. Php can go on any site php is a server side language. www.clantemplates.com has some ok temps but they seem to ignore the w3 standards and I am not sure how good their temps would look on other browsers.
DanUK
08-07-2003, 06:49 PM
hi, thanks for your reply.
They are nice designs, but perhaps too 'busy'..still searching google for some simple, modern and 'cute' designs; and just wondered if anyone here already knew of a website to look at.
thanks again.
J Haddock
08-08-2003, 12:02 PM
I was wondering why it is not possible to put a JPEG image into an HTML document wheras I can easily put GIF or BITMAP formatted pictures in??
Dark Dragon
08-08-2003, 12:23 PM
I was wondering why it is not possible to put a JPEG image into an HTML document
That is odd because the web site I am working on now has both JPEG and GIF images on it...can you tell us a bit more about the problem you are encountering?
J Haddock
08-08-2003, 12:37 PM
When I put in images as GIF that were originally formatted for GIF they worked out fine but when I try to put in JPEG formatted pictures it wont even show up on the finished product (visual version of the website). so when I tried to re-format the picture to a GIF the quality of it is crap!! so I am wondering if it may be the tag or if not that then probably the program? heres the tag -->
<TD ALIGN = CENTER VALIGN = TOP IMG SRC="Andy.JPG"> <H3><FONT COLOR = "#003366" > SKATE VIDS </FONT> </H3>
hope the tag helps and thanks for your reply!!
PeOfEo
08-08-2003, 04:57 PM
That code is completly wrong.
<TD ALIGN="CENTER" VALIGN="TOP">
<IMG SRC="Andy.JPG"><H3><FONT COLOR="#003366" > SKATE VIDS </FONT> </H3>
is the correct way to do it, if you are trying to set the image as a background you would use this code
<TD ALIGN="CENTER" VALIGN="TOP" Background="Andy.JPG"><H3><FONT COLOR="#003366" > SKATE VIDS </FONT> </H3>
Aronya1
08-08-2003, 05:51 PM
Originally posted by J Haddock
... it wont even show up on the finished product (visual version of the website).
If PeOfEo's code correction doesn't fix your problem...
Are you sure you have your link path correct? Sometimes the path will be case sensitive. IMAGE.JPG is different from image.jpg is different from IMAGE.jpg, etc. Right-click the image placeholder when viewing the page in your browser, and click Properties. Check the path. Also, be sure you've uploaded the image to the right directory on the server.