Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 47
Search took 0.12 seconds.
Search: Posts Made By: redspyder
Forum: HTML & CSS 10-08-2009, 09:18 AM
Replies: 7
Views: 725
Posted By redspyder
I don't know what you are up to but I got...

I don't know what you are up to but I got redirected by SiteAdvisor to this message:


1pcrepair.890m.com may cause a breach of browser security.

Why were you redirected to this page?

When...
Forum: HTML & CSS 09-27-2009, 02:20 AM
Replies: 2
Views: 521
Posted By redspyder
Or you could try this CSS library...

Or you could try this CSS library (http://www.dynamicdrive.com/style/csslibrary/item/corp_blue_css_menu/) (which is a sliding doors menu).

redspyder
Forum: HTML & CSS 09-25-2009, 11:19 AM
Replies: 6
Views: 1,001
Posted By redspyder
This will do the same thing with a lot less code....

This will do the same thing with a lot less code.

.linkbox1, .linkbox2, .linkbox3, .linkbox4, .linkbox5
{
padding:10px;
background:#ffffff;
border:3px #000099 solid;
text-decoration:...
Forum: HTML & CSS 09-25-2009, 01:14 AM
Replies: 4
Views: 1,270
Posted By redspyder
Just do it a bit at a time and keep checking...

Just do it a bit at a time and keep checking after every small change that everythings still ok. That way if something is wrong you can go back and sort it out before moving onto the next small...
Forum: HTML & CSS 09-24-2009, 10:27 PM
Replies: 4
Views: 1,270
Posted By redspyder
hi jamila, If your site is online can you...

hi jamila,

If your site is online can you post a link please, that will help a lot.

You could make a seperate style sheet for each page, but that kind of defeats the whole object of the...
Forum: HTML & CSS 09-21-2009, 01:30 AM
Replies: 6
Views: 777
Posted By redspyder
hi netjunky, You should have information...

hi netjunky,

You should have information from your host about where to put your files.

You need to put them in the "root", with many hosts it's a folder called public_html but it varies.
...
Forum: HTML & CSS 09-19-2009, 02:19 AM
Replies: 6
Views: 777
Posted By redspyder
I think you are getting confused about url's. ...

I think you are getting confused about url's.

It's dependant on your domain name, you don't "set" it in your code.

Assuming you've called that file index.html, when it's uploaded to your...
Forum: HTML & CSS 09-17-2009, 12:41 AM
Replies: 2
Views: 507
Posted By redspyder
Try removing this line... <base...

Try removing this line...

<base href="http:www.fireriskassessmentconsultants.com/">

...it only appears in the head of your index page, not the other 3.

redspyder
Forum: HTML & CSS 09-16-2009, 02:47 AM
Replies: 8
Views: 1,113
Posted By redspyder
Your problem is that the <body> does not have a...

Your problem is that the <body> does not have a defined width.

Add this...

width:870px;
margin:0 auto;

To body in the style sheet. Should look something like this...

body {
Forum: HTML & CSS 09-16-2009, 02:19 AM
Replies: 1
Views: 417
Posted By redspyder
Add padding to.. .col-main { float:left; } ...

Add padding to..

.col-main { float:left; }

For example..

.col-main
{
float:left;
padding-left:40px;
Forum: HTML & CSS 09-09-2009, 03:14 AM
Replies: 5
Views: 772
Posted By redspyder
<body> should be the very next line after </head>...

<body> should be the very next line after </head> so above <div id="header" class="clearfix">

This is what you've got:

</head>


<table width="100%" border="0">

This is what you...
Forum: HTML & CSS 09-09-2009, 02:45 AM
Replies: 5
Views: 772
Posted By redspyder
This line: <div id="header"...

This line:

<div id="header" class="clearfix">

needs to be above

<table width="100%" border="0">

Also your <body> tag is missing
Forum: HTML & CSS 03-20-2009, 12:33 AM
Replies: 3
Views: 681
Posted By redspyder
hi Frank, You may well kick yourself... ...

hi Frank,

You may well kick yourself...

Both rtbox and rtboxb need to close with } in the stylesheet, not ) as at present.

All the best - redspyder

edit* beaten again.
Forum: HTML & CSS 02-24-2009, 02:47 PM
Replies: 8
Views: 1,109
Posted By redspyder
Sorry about that, post corrected. All the...

Sorry about that, post corrected.

All the best - redspyder
Forum: HTML & CSS 02-24-2009, 02:31 PM
Replies: 9
Views: 1,371
Posted By redspyder
The reason it's right across the page is because...

The reason it's right across the page is because the body tag doesn't have a width assigned, so body is 100% wide.

All the best - redspyder
Forum: HTML & CSS 02-24-2009, 02:17 PM
Replies: 8
Views: 1,109
Posted By redspyder
hi John, Add this to your css: img ...

hi John,

Add this to your css:


img
{
border:0;
margin:0;
padding:0
Forum: HTML & CSS 02-24-2009, 01:42 AM
Replies: 12
Views: 1,050
Posted By redspyder
Excellant! Stare at my own code for days on...

Excellant!

Stare at my own code for days on end sometimes, wierd how it's harder to spot your own errors. Good luck with the rest of it.

All the best - redspyder
Forum: HTML & CSS 02-24-2009, 12:46 AM
Replies: 12
Views: 1,050
Posted By redspyder
Also remove <p>&nbsp;</p> from between the...

Also remove
<p>&nbsp;</p>

from between the navlinkcont and indextext divs.

Here's your code with that line removed. You need to do both things, add previous code to css as well as removing...
Forum: HTML & CSS 02-24-2009, 12:38 AM
Replies: 12
Views: 1,050
Posted By redspyder
That's odd, it did the job on my computer, I'll...

That's odd, it did the job on my computer, I'll have another look.

I'm about 5 miles from Truro.

All the best - redspyder
Forum: HTML & CSS 02-24-2009, 12:10 AM
Replies: 12
Views: 1,050
Posted By redspyder
hi LJackson, Add this clear:both; ...

hi LJackson,

Add this

clear:both;

to this

#indextext{
font-family:Arial, Helvetica, sans-serif;
Forum: HTML & CSS 02-20-2009, 03:03 AM
Replies: 5
Views: 522
Posted By redspyder
You'll get hammered for using tables. You friend...

You'll get hammered for using tables. You friend didn't do you any favours, the style information goes in the head, there should not be anything after the /html tag.

All ul styles have been moved...
Forum: HTML & CSS 02-15-2009, 10:20 PM
Replies: 13
Views: 2,119
Posted By redspyder
If you are trying to allow people to change the...

If you are trying to allow people to change the style, colours etc of a website you are going the wrong way about it.


.class1, .class2
{
color:#000;
background:#fff;
}

Will asign...
Forum: General web building 02-15-2009, 01:16 AM
Replies: 4
Views: 835
Posted By redspyder
Should have said in previous post it's on the...

Should have said in previous post it's on the right, not left.

http://i63.photobucket.com/albums/h158/MUFC-Dunx/tisbg.jpg



No, it's definitely an h1 tag. It's on all pages except Home page....
Forum: General web building 02-15-2009, 01:09 AM
Replies: 4
Views: 1,127
Posted By redspyder
The big problem with new forums is empty boards,...

The big problem with new forums is empty boards, they put people off registering and make the site look empty. Keep you boards to a minimum to start with, you can always add more later on.

Make...
Forum: General web building 02-14-2009, 02:00 AM
Replies: 16
Views: 1,854
Posted By redspyder
Before moving on gain a good understanding of...

Before moving on gain a good understanding of html and css. Learn about the W3C standards while your doing that. Many really good websites are written just with html/css.

When you see something...
Showing results 1 to 25 of 47

 
Forum Jump

All times are GMT +1. The time now is 03:52 AM.