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 20
1
2
3
11
>
Last
»
Showing results 1 to 25 of 500
Search took
2.70
seconds.
Search:
Posts Made By:
rmedek
Forum:
HTML & CSS
03-25-2010, 08:38 PM
Replies:
4
Pure CSS onclick swap or replace div?
Views:
3,620
Posted By
rmedek
Javascript is exactly what you need, and it's the...
Javascript is exactly what you need, and it's the only way you're going to dynamically insert content into the page that didn't exist before.
If you really are against Javascript for whatever...
Forum:
HTML & CSS
03-25-2010, 08:31 PM
Replies:
1
Centering vertically the radio buttons
Views:
815
Posted By
rmedek
I don't know if you want to go this route but...
I don't know if you want to go this route but what I will do sometimes is make the inputs block-level elements and adjust with margins or positioning—helps get things tighter cross-browser:
...
Forum:
HTML & CSS
09-22-2009, 07:42 PM
Replies:
6
Resolved
Dropdown menu not working in Firefox
Views:
4,125
Posted By
rmedek
Validating your HTML would have caught this. You...
Validating your HTML would have caught this. You have this code:
<ul>
<li><a href="projects.html">Projects.Create() | </a></li>
<ul>
<li><a href="arcgis.html">ArcGIS...
Forum:
HTML & CSS
08-25-2009, 09:40 PM
Replies:
6
Style <p> inside a div without using <class>
Views:
1,314
Posted By
rmedek
Maybe this will help: ...
Maybe this will help:
http://www.stuffandnonsense.co.uk/archives/css_specificity_wars.html
Forum:
HTML & CSS
07-10-2009, 07:42 AM
Replies:
1
trying to display logo in address bar
Views:
773
Posted By
rmedek
Try using a standard method of linking…see...
Try using a standard method of linking…see examples at the bottom of the article:
http://en.wikipedia.org/wiki/Favicon
…also make sure the path to the image file is correct. ;)
Forum:
HTML & CSS
06-10-2009, 11:32 PM
Replies:
11
Hi all, need help...resizable header & footer with 3 images and 1 logo overlaid?
Views:
1,407
Posted By
rmedek
At first glance here's how I would do this,...
At first glance here's how I would do this, without overthinking things.
Get a few containers ready for your header. Since you can't have multiple background images, you would need at least three...
Forum:
HTML & CSS
06-02-2009, 02:27 AM
Replies:
4
Top Floating Navigation
Views:
3,496
Posted By
rmedek
The basic behavior of the Yahoo example is...
The basic behavior of the Yahoo example is "position: fixed" in the CSS. But the way it only becomes "fixed" once it's moved to the top is controlled by Javascript.
A CSS-only version would be...
Forum:
HTML & CSS
06-02-2009, 02:05 AM
Replies:
6
Resolved
table layout without tables
Views:
698
Posted By
rmedek
You'd have to edit your HTML to have elements in...
You'd have to edit your HTML to have elements in your list items. Like:
<li><span>data 1</span><span>data 2</span></li>
…etc. I'd say just modify the Javascript, as long as you have to edit it...
Forum:
HTML & CSS
06-02-2009, 02:00 AM
Replies:
5
Page not resizing to content
Views:
735
Posted By
rmedek
The page is reacting that way because the image...
The page is reacting that way because the image is dynamically rendered. It's reading the width of <html>'s content as one width, then loads the image, which is bigger than that width.
What I...
Forum:
HTML & CSS
02-23-2009, 03:22 PM
Replies:
4
Coding Designed Website?
Views:
786
Posted By
rmedek
This is totally terrible advice. Absolute...
This is totally terrible advice. Absolute positioning can be very helpful, and if you have fixed dimensions in your layout it can be the easiest way to position elements.
As far as the original...
Forum:
HTML & CSS
01-22-2009, 10:12 PM
Replies:
6
having trouble adding dropdown menus
Views:
483
Posted By
rmedek
Hi Mark In your initial menu, try making the...
Hi Mark
In your initial menu, try making the list items block-level and floating them rather than getting them side-by-side by making them inline. The first half of that tutorial shows how to set...
Forum:
HTML & CSS
01-12-2009, 09:59 PM
Replies:
2
increase width of <input type="text"> as I write
Views:
808
Posted By
rmedek
That emphasis is mine…the "dynamically" pretty...
That emphasis is mine…the "dynamically" pretty much answers your question. Any dynamic action on your website is handled by Javascript, not HTML. Might want to ask a mod to move this to the...
Forum:
HTML & CSS
12-23-2008, 12:38 AM
Replies:
3
Html help concerning linking back to a page not in the menu panel
Views:
469
Posted By
rmedek
We need to see your code, there could be a...
We need to see your code, there could be a million zillion things wrong.
Most likely your link needs to be in this format: <a href="http://yourdomain.com/folder/page.html">your link text</a>.
Forum:
HTML & CSS
12-23-2008, 12:34 AM
Replies:
2
301 redirect, virtual hosting
Views:
1,415
Posted By
rmedek
Not quite an HTML problem but what the hey… ...
Not quite an HTML problem but what the hey…
First of all, you most likely don't need (or want) the "deny from all" rules in your .htaccess file. So the .htaccess file would read:
RewriteEngine...
Forum:
HTML & CSS
10-29-2008, 05:55 AM
Replies:
30
How can I make a letterbox design?
Views:
4,251
Posted By
rmedek
An absolutely positioned element is positioned...
An absolutely positioned element is positioned relative to its container. So, you position 50% from the left, it'll always be 50% from the left side of the container. That "dead centre" page has the...
Forum:
HTML & CSS
10-29-2008, 05:41 AM
Replies:
3
How would this be done?
Views:
548
Posted By
rmedek
#top_inner_content, .top_links, .top_links...
#top_inner_content, .top_links, .top_links a:link, .top_links a:visited {
background-color:#97B064;
margin:0px auto;
width:700px;
height:24px;
color:#fff;
font-size:11px;
font-weight:normal;...
Forum:
HTML & CSS
10-28-2008, 06:43 AM
Replies:
4
adding padding adds extra bottom margin
Views:
1,077
Posted By
rmedek
Maybe, but that was all sorts of inappropriate...
Maybe, but that was all sorts of inappropriate and broke not only one but several forum rules and guidelines. :|
Forum:
Site reviews
10-15-2008, 05:14 PM
Replies:
7
Site almost finished - review, please
Views:
1,221
Posted By
rmedek
That's not true. Although a lot of mobile devices...
That's not true. Although a lot of mobile devices don't support (or run, due to battery life) Flash, most typical browsers have Flash installed and up-to-date.
Having said that, I hate all-Flash...
Forum:
HTML & CSS
10-13-2008, 07:57 PM
Replies:
2
how to hide the page source?
Views:
804
Posted By
rmedek
This has been asked and answered so many times,...
This has been asked and answered so many times, and there's a Sticky in the General Web forum.
Forum:
HTML & CSS
10-09-2008, 08:24 AM
Replies:
4
Need help willing to pay now (simple fix)
Views:
693
Posted By
rmedek
Links to objectionable (i.e. pornography) content...
Links to objectionable (i.e. pornography) content is not allowed. See the forum Rules (http://www.codingforums.com/rules.htm).
Forum:
HTML & CSS
09-16-2008, 01:12 AM
Replies:
1
eBay custom pages..help and advice needed
Views:
810
Posted By
rmedek
You're not supposed to delete your posts once you...
You're not supposed to delete your posts once you find an answer to your question. You're supposed to leave your question, any discussion, and solution here so others may find your solution helpful.
Forum:
HTML & CSS
09-15-2008, 07:30 PM
Replies:
12
problem in relative addressing
Views:
1,107
Posted By
rmedek
P.S. The best thing to do here is upload the site...
P.S. The best thing to do here is upload the site and get it off of localhost…it'll be easier for you to set up the paths and easier for us to see what's wrong.
Forum:
HTML & CSS
09-15-2008, 07:30 PM
Replies:
12
problem in relative addressing
Views:
1,107
Posted By
rmedek
Have you tried other paths? This could go on for...
Have you tried other paths? This could go on for years if you don't provide more info other than "still doesn't work."
One thing to try — can you view the image directly? I.e.,...
Forum:
HTML & CSS
09-14-2008, 04:45 PM
Replies:
2
Main Page Having Links to Most Visited Pages?
Views:
737
Posted By
rmedek
Cross-posted here: ...
Cross-posted here:
http://www.codingforums.com/showthread.php?t=148809
Forum:
HTML & CSS
09-14-2008, 02:04 PM
Replies:
12
problem in relative addressing
Views:
1,107
Posted By
rmedek
It all depends on what your root is. This path: ...
It all depends on what your root is. This path:
/somewhere/file.html
…means "start at the very beginning of the file directory, then look for a folder called 'somewhere', then look for...
Showing results 1 to 25 of 500
Page 1 of 20
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
04:29 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.