Register
FAQ
Calendar
Search
Today's Posts
Rules
Guidelines
SMS enable your application
via Clickatell’s fast, simple and reliable API's, built to integrate with any system.
Click here
to learn more.
Flash Website Builder
- Trendy Site Builder is a Flash Site Building tool that helps users build stunning websites.
Check Out Custom
Custom Logo Design
by LogoBee. Website Design and Free Logo Templates available.
CodingForums.com
>
Search Forums
Search Results
User Name
Remember Me?
Password
Before you post, read our:
Rules
&
Posting Guidelines
Page 1 of 12
1
2
3
11
>
Last
»
Showing results 1 to 25 of 293
Search took
1.63
seconds.
Search:
Posts Made By:
COBOLdinosaur
Forum:
HTML & CSS
05-14-2013, 09:14 PM
Replies:
3
Image moving on different screens
Views:
239
Posted By
COBOLdinosaur
The central image is going to get moved around on...
The central image is going to get moved around on different platforms because you have some issues.
The page in the iframe does not have a doctype, so you are not controlling cross-browser...
Forum:
HTML & CSS
04-22-2013, 12:31 AM
Replies:
4
Why is IE 10 going into compatibility mode on my site?
Views:
221
Posted By
COBOLdinosaur
That is common. You coded to get a given...
That is common. You coded to get a given rendering but because the structure was invalid, it probably took other invalid code to get what you need. At some point the invalid code creates a problem...
Forum:
HTML & CSS
04-22-2013, 12:01 AM
Replies:
3
Page center (margin:0 auto) not working
Views:
242
Posted By
COBOLdinosaur
position:absolute is probably breaking it because...
position:absolute is probably breaking it because it takes the elements out of the normal flow. without a link to the page, there is no wayfor me to do a diagnostic, so I can recommend changes.
Forum:
HTML & CSS
04-21-2013, 04:11 PM
Replies:
4
Drop down menu protruding to side in IE 7 - Help please!
Views:
158
Posted By
COBOLdinosaur
IE7 uses a defective box model. You can do a lot...
IE7 uses a defective box model. You can do a lot of work trying to detect IE7 during load and then using scripting to try and fix it; or you can check your site stats to see if you have enough...
Forum:
HTML & CSS
04-21-2013, 04:06 PM
Replies:
4
Why is IE 10 going into compatibility mode on my site?
Views:
221
Posted By
COBOLdinosaur
HTML validation fails with a fatal error and the...
HTML validation fails with a fatal error and the validator cannot complete the scan because of serious structural errors involving an invalid body tag (among others). I suspect that when IE10 sees...
Forum:
HTML & CSS
04-21-2013, 03:59 PM
Replies:
2
Float text left and right side of page in same line.
Views:
165
Posted By
COBOLdinosaur
That mess makes absolutely no sense when compared...
That mess makes absolutely no sense when compared to the text describing what you are trying to do. You have no where near a correct structure for spit floats.
Post a link to the page, because the...
Forum:
HTML & CSS
04-21-2013, 03:55 PM
Replies:
10
Margin not working
Views:
196
Posted By
COBOLdinosaur
When you get around to trying the code I posted,...
When you get around to trying the code I posted, post a link to the result I will be back, but I am not going to waste my time playing a game of peek-a-boo.
Forum:
HTML & CSS
04-20-2013, 07:45 PM
Replies:
10
Margin not working
Views:
196
Posted By
COBOLdinosaur
well if that does not do it then it is a screwy...
well if that does not do it then it is a screwy page and has some junk on it that is probably non-standard and turning the DOM into a gelatinous tag soup.
@h123er2,
Post a link to the page. It...
Forum:
HTML & CSS
04-20-2013, 06:49 PM
Replies:
10
Margin not working
Views:
196
Posted By
COBOLdinosaur
.image{background-color:red;height:200px;width:500...
.image{background-color:red;height:200px;width:500px;}
.image p{padding-top:10px;float:left;margin-left:10px;}
Forum:
HTML & CSS
02-21-2013, 04:15 PM
Replies:
1
How to set style dependant on adjacent element
Views:
187
Posted By
COBOLdinosaur
<div> <span class='glossAcro'>AC</span><span...
<div>
<span class='glossAcro'>AC</span><span class='glossDef'>AC def</span>
<span class='glossAcro'>DC</span><span class='glossDef'>DC def</span>
</div>
Looks like all it needs is a styled...
Forum:
HTML & CSS
02-20-2013, 07:26 PM
Replies:
8
Delayed CSS Popup code help
Views:
263
Posted By
COBOLdinosaur
Yes it requires scripting you put the styles in...
Yes it requires scripting you put the styles in their own style tag:
<stlyle type="text/css" id="style1" disabled="disabled">
.spu-button {
margin-left:15px;
}
#spu-msg-cont {
border-bottom:1px...
Forum:
HTML & CSS
02-20-2013, 07:12 PM
Replies:
5
Aligning an image in my header and making it fluid
Views:
191
Posted By
COBOLdinosaur
Put both images in the same with div around the...
Put both images in the same with div around the second image then give the div a margin-left expressed in pixels and that will maintain the relationship between them. If you want the two to come...
Forum:
HTML & CSS
02-15-2013, 04:29 PM
Replies:
4
CSS Image Padding/Margin Issue in IE
Views:
340
Posted By
COBOLdinosaur
:thumbsup: Sometimes I get lucky.
:thumbsup: Sometimes I get lucky.
Forum:
HTML & CSS
02-13-2013, 08:16 PM
Replies:
5
CSS issue with sub-menu when html file in seperate folder
Views:
440
Posted By
COBOLdinosaur
The directory structure eludes me. That second...
The directory structure eludes me. That second link is above or below the target pages that are a problem?
Forum:
HTML & CSS
02-13-2013, 06:44 PM
Replies:
4
CSS Image Padding/Margin Issue in IE
Views:
340
Posted By
COBOLdinosaur
Without a link to the page so I can see the full...
Without a link to the page so I can see the full code, my guess is that you do not have a proper doctype to keep IE out of quirksmode.
Forum:
HTML & CSS
02-13-2013, 06:42 PM
Replies:
5
CSS issue with sub-menu when html file in seperate folder
Views:
440
Posted By
COBOLdinosaur
The links in...
The links in http://www.robertshvac.com/temp/test/adjeovj/news.html
All assume that the target pages are in the same directory. If they are not, then you need to include the path in the href...
Forum:
HTML & CSS
02-09-2013, 08:23 PM
Replies:
5
CSS issue with sub-menu when html file in seperate folder
Views:
440
Posted By
COBOLdinosaur
Without a link to the page there is no way for us...
Without a link to the page there is no way for us to see what is going on.
Forum:
HTML & CSS
02-09-2013, 04:31 PM
Replies:
3
How to make login page design function
Views:
396
Posted By
COBOLdinosaur
This is how I do secure login...
This is how I do secure login (http://coboldinosaur.com/pages/Secure_Login_Form.html).
Forum:
HTML & CSS
02-09-2013, 04:27 PM
Replies:
4
Content fade only, please
Views:
278
Posted By
COBOLdinosaur
It looks like it is built with...
It looks like it is built with http://www.wix.com/ It is badly implemented and technically it is junk. If the best you can do is build with that kind of junk you might want to consider a carreer in...
Forum:
HTML & CSS
02-09-2013, 01:42 AM
Replies:
7
Having trouble with float properties in FF and Chrome
Views:
260
Posted By
COBOLdinosaur
As you move along with the site, you will find...
As you move along with the site, you will find other things you need help with, and for just about anything web related you will find folks here willing to help. Just ask anytime.
Forum:
HTML & CSS
02-08-2013, 05:18 PM
Replies:
7
Having trouble with float properties in FF and Chrome
Views:
260
Posted By
COBOLdinosaur
Don't give up on it. If there are delivery time...
Don't give up on it. If there are delivery time issues, then you may need to hire someone, but the mistakes are the best way to learn; even when they are little painful. If you stay with it you...
Forum:
HTML & CSS
02-08-2013, 03:42 PM
Replies:
7
Having trouble with float properties in FF and Chrome
Views:
260
Posted By
COBOLdinosaur
Templates an jquery are not the way to learn. ...
Templates an jquery are not the way to learn. CSS and HTML are not difficult to learn and if you Google for tutorials for them you will find there is a ton of helpful information.
Using someone...
Forum:
HTML & CSS
02-07-2013, 10:03 PM
Replies:
3
Help with overflow:scroll
Views:
234
Posted By
COBOLdinosaur
Well there are issues with support of scroll in...
Well there are issues with support of scroll in IE related to doctype. Without a link to a real page where we can see what is affecting the element, it is not possible to give any definitive...
Forum:
HTML & CSS
01-26-2013, 07:57 PM
Replies:
13
Disappearing block
Views:
1,220
Posted By
COBOLdinosaur
You cannot do a float on elements that have...
You cannot do a float on elements that have position:absolute or position:fixed
Cd&
Forum:
HTML & CSS
01-24-2013, 06:37 PM
Replies:
1
CSS not working in Internet Explorer
Views:
269
Posted By
COBOLdinosaur
AFAIK transitions do not work on IE prior to IE10...
AFAIK transitions do not work on IE prior to IE10 and transform Does not work prior to IE9 and for IE9 you have to use -ms- prefix.
Showing results 1 to 25 of 293
Page 1 of 12
1
2
3
11
>
Last
»
Forum Jump
User Control Panel
Private Messages
Subscriptions
Who's Online
Search Forums
Forums Home
:: Client side development
JavaScript programming
DOM and JSON scripting
Ajax and Design
JavaScript frameworks
Post a JavaScript
HTML & CSS
XML
Flash & ActionScript
Adobe Flex
Graphics and Multimedia discussions
General web building
Site reviews
Building for mobile devices
:: Server side development
Apache configuration
Perl/ CGI
PHP
Post a PHP snippet
MySQL
Other Databases
Ruby & Ruby On Rails
ASP
ASP.NET
Java and JSP
Other server side languages/ issues
ColdFusion
Python
:: Computing & Sciences
Computer Programming
Computer/PC discussions
Geek News and Humour
Web Projects and Services Marketplace
Web Projects
Small projects (quick fixes and changes)
Medium projects (new script, new features, etc)
Large Projects (new web application, complex features etc)
Unknown sized projects (request quote)
Vacant job positions
Looking for work/ for hire
Project collaboration/ partnership
Paid work offers and requests (Now CLOSED)
Career, job, and business ideas or advice
Domains, Sites, and Designs for sale
Domains for sale
Websites for sale
Design templates and graphics for sale
:: Other forums
Forum feedback and announcements
All times are GMT +1. The time now is
03:40 AM
.
Web Hosting UK
|
Dedicated Server Hosting
|
Shareware Junction
|
Software Geek
|
Flash file uploader
|
Cloud Server
|
Web Hosting Australia
Home
-
Contact Us
-
Archives
-
Link to CF
-
Resources
-
Top
Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.