Started 1 week, 2 days ago (2009-12-28 20:00:00)
by chrishirst
Something like
HTML Code:
<ul>
<li> <a href= "uri" > Text </a> </li>
<li> <a href= "uri" > Text </a> </li>
<li> <a href= "uri" > Text </a> </li>
<li> <a href= "uri" > Text </a> </li>
</ul>
would probably work
Started 2 weeks ago (2009-12-23 13:01:00)
by wayfarer07
Are you talking about getting that
humongous background image to fit in every browser window? If so, no need to worry about that, as background images repeat themselves by default. With the tiled image as it is, a repeating image is not a problem, and on huge monitors will not even be noticeable.
Background images can't be stretched, so if you want the entire image to be shown on smaller ...
Started 1 month ago (2009-12-07 20:44:00)
by vangogh
Get rid of the table. Separate the posts using css. Wrap a div around the
content where you added the table and then separate the content however you
liked by applying css to that new div.
Started 3 weeks, 4 days ago (2009-12-12 13:17:00)
by Danaldinho
Hey,
On my website ( http://www.lilwaynehq.com ) if you look in the
sidebar for the box which has "Latest", "Popular", "Last Comments", and "Tags" in Firefox, then you can see it looks good.
But in IE7, it looks like this:
It even looks correctly in IE6.
I've looked at the code and I can't see what the problem is.
Does anyone know how I can fix this?
Thanks, ...
Started 1 week, 4 days ago (2009-12-26 19:08:00)
by tripy
It's "webmaster-talk.com", not "talk-to-santa.com".
What you are looking for is a freelancer, and it's not in this forum you will find it.
The html forum is dedicated to solving problems in your HTML compositions.
Either look in the
market place, of www.getafreelancer.com
Started 1 week, 6 days ago (2009-12-24 10:43:00)
by lynxus
Hi yall.
I have a hyperlink " is that what we call it still? "
Anyway..
Like so
<a href = "" onclick="javascript oStuff();"
How can i get it to :
<a href = "" onclick="javascript oStuff(); javascript oSomeOtherStuff();"
Ie: to have it run 2 sets of JS onclick ?
Thanks
G
...
Started 2 weeks, 1 day ago (2009-12-23 06:20:00)
by chrishirst
either use
server side code to read the folder and write links to the page
or allow directory browsing and remove the index page
Started 1 week, 6 days ago (2009-12-25 00:27:00)
by internet
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd ">
<html expr:dir='data:blog.languageDirection' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'>
<head>
<b:include ...
Started 2 weeks ago (2009-12-23 09:51:00)
by chrishirst
use a <pre> elelment
see http://www.modtalk.co.uk/article/c-a...sign/uri-ca se/ for an example.
Started 2 weeks, 4 days ago (2009-12-20 05:50:00)
by Brian07002
You can do what you want in php code. This will allow you to create what are called 'Dynamic Pages'. If you ever seen a site where the url (link) would look something like:
Code:
http://thisdomain.com/index.php?id=1
That's a dynamically generated page ( id=1 ) and is stored in a database. MySQL db is pretty popular, then there's also
MS SQL. Both handle this functionality quite ...