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 10
1
2
3
>
Last
»
Showing results 1 to 25 of 233
Search took
0.53
seconds.
Search:
Posts Made By:
resdog
Forum:
PHP
04-15-2013, 07:21 PM
Replies:
3
Advice to a n00b pls - regarding PHP Framework
Views:
190
Posted By
resdog
You should learn php first, then bring in the...
You should learn php first, then bring in the framework knowledge. As a framework like codeignitor is based on php, if you know php, it makes learning that easier.
You can definitely just start...
Forum:
HTML & CSS
04-15-2013, 07:13 PM
Replies:
2
background featured section puzzle
Views:
139
Posted By
resdog
in this css, add this piece: overflow:...
in this css, add this piece:
overflow: hidden;
That seemed to fix the issue with me. There's something on that page that is floated left and the clearing you are doing on those pages aren't...
Forum:
Graphics and Multimedia discussions
04-12-2013, 02:31 PM
Replies:
5
Resize eps file
Views:
1,203
Posted By
resdog
You can use Illustrator to do this. ...
You can use Illustrator to do this.
Open the document in Illustrator.
Select all the elements you want to resize.
Depending on the version of Illustrator you use:
If you see the...
Forum:
PHP
04-12-2013, 02:20 PM
Replies:
3
PHP Multiple choice quiz script - confused with one thing!
Views:
292
Posted By
resdog
Yes you are correct. Here's the code you would...
Yes you are correct. Here's the code you would use:
echo "<div id='results'>$totalCorrect / 5 correct</div>";
if ($totalCorrect < 10) {
echo '<div id="failed">You failed this course.</div>';...
Forum:
General web building
04-12-2013, 02:10 PM
Replies:
1
How To Get More Images To Load Underneath, After Pressing a button
Views:
776
Posted By
resdog
I would use AJAX and PHP to facilitate this. when...
I would use AJAX and PHP to facilitate this. when they click for more, you'd have an AJAX call to a php file that would retrieve more images and then use the php return to display it on the page via...
Forum:
JavaScript programming
04-12-2013, 02:05 PM
Replies:
4
Help Changing Image Background
Views:
180
Posted By
resdog
You would need to add this bit of code at the...
You would need to add this bit of code at the beginning of the changeBGImage function:
if (i > 7) {
i = 0;
}
so your changeBGImage function would look like this:
Forum:
JavaScript programming
04-12-2013, 01:47 PM
Replies:
4
Help sort table using javascript
Views:
304
Posted By
resdog
You could use jquery and the tablesorter plugin: ...
You could use jquery and the tablesorter plugin:
http://tablesorter.com/docs/
Forum:
HTML & CSS
04-12-2013, 01:39 PM
Replies:
2
How to enlarge an image in HTML using mouse over or other options if possible
Views:
272
Posted By
resdog
Since the site you're referencing is using CSS...
Since the site you're referencing is using CSS transitions, you can use that, but you won't get the smooth transitions in IE9 or lower. In that case the image will just enlarge.
...
Forum:
HTML & CSS
04-12-2013, 01:33 PM
Replies:
1
Background jumping up with navigation click?
Views:
118
Posted By
resdog
I looked at this in Firefox, Chrome and IE 10,...
I looked at this in Firefox, Chrome and IE 10, and this issue didn't happen. What browser are you viewing in?
Forum:
HTML & CSS
03-19-2013, 02:52 PM
Replies:
1
Wordpress Category widget - how do you style it?
Views:
149
Posted By
resdog
Couldn't you just use the id provided: ...
Couldn't you just use the id provided:
#cat {
width: 100px;
}
Forum:
Graphics and Multimedia discussions
12-11-2012, 05:09 PM
Replies:
22
Trying to make a logo
Views:
5,718
Posted By
resdog
Use a vector program (Illustrator). Since you...
Use a vector program (Illustrator). Since you don't know what you're doing...let me throw this out there. Are you viewing this at 100% size, or is it enlarged? If it's enlarged, then of course it...
Forum:
Graphics and Multimedia discussions
12-11-2012, 05:06 PM
Replies:
5
How I discover an image hidden by other image?
Views:
697
Posted By
resdog
If it's a flattened image, then, no, there's not...
If it's a flattened image, then, no, there's not a way to see behind it. A flattened image is just that. Flattened. It's pixel based, so all the pixels there are black...so there's no way to see...
Forum:
HTML & CSS
12-11-2012, 05:00 PM
Replies:
2
Dealing with HTML #Anchors and CargoCollective
Views:
283
Posted By
resdog
First of all, you need to ask yourself why you...
First of all, you need to ask yourself why you are doing this? The majority of people are used to going to a web page and using the scroll wheel to scroll. On your site, this will result in a...
Forum:
HTML & CSS
12-10-2012, 12:23 AM
Replies:
11
Image and Text side by side
Views:
380
Posted By
resdog
CSS would be the easiest way. Assign the image a...
CSS would be the easiest way. Assign the image a class name (like "leftImage") and then assign it a style of margin-right: 10px;
This CAN be done with pure html, by using tables, or by adding...
Forum:
HTML & CSS
12-10-2012, 12:20 AM
Replies:
8
Why no line break when I open/ close <p>
Views:
347
Posted By
resdog
You can remove any css that changes your <p>...
You can remove any css that changes your <p> tags. The line in your code will apply to ALL elements on your site.
The problem with resets is that browsers render default margins and paddings,...
Forum:
HTML & CSS
11-30-2012, 11:04 PM
Replies:
2
<a> tag styling with CSS, OK with one, color doesn't hold when 2nd is added?
Views:
250
Posted By
resdog
Is that all the CSS you have? What you have...
Is that all the CSS you have? What you have should work, <a> tags don't have a border around them to start off with. So if it wasn't working correctly, then there wouldn't be a border at all. I...
Forum:
HTML & CSS
03-14-2012, 03:27 PM
Replies:
15
Webpage background ends before content
Views:
980
Posted By
resdog
Your background image is only 2500px tall, but...
Your background image is only 2500px tall, but your webpage is longer than that. That's why it stops...you need to extend the background image further down.
Forum:
HTML & CSS
12-22-2011, 01:15 PM
Replies:
2
lost submit function in form.
Views:
208
Posted By
resdog
My guess is you have a javascript error which...
My guess is you have a javascript error which means in the dateandtimepicker, something is wrong with the javascript, so it doesn't execute any other javascript.
Forum:
HTML & CSS
12-21-2011, 04:16 PM
Replies:
10
IE problems with styles
Views:
1,151
Posted By
resdog
If your talking about IE 8, then it's because IE8...
If your talking about IE 8, then it's because IE8 doesn't recognize html5 elements, like <section>. You have to tell it. In your header section, add this bit of code:
<!--[if lt IE 9]>
<script...
Forum:
HTML & CSS
12-21-2011, 04:11 PM
Replies:
3
Resizing DIV based on PHP content
Views:
478
Posted By
resdog
without seeing what your code and css is, it's...
without seeing what your code and css is, it's hard to diagnose the problem. My first question to you is have you assigned a set height to the div? If so, remove that.
Secondly, is the Div...
Forum:
HTML & CSS
12-16-2011, 06:01 PM
Replies:
2
Resolved
HTML/CSS Img float: left; problem.
Views:
418
Posted By
resdog
You would need to either set the parent container...
You would need to either set the parent container to have the clearfix hack applied, or you would need to apply the "clear: both" to the following container.
Forum:
PHP
12-15-2011, 02:19 PM
Replies:
3
Am I using while() correctly?
Views:
285
Posted By
resdog
And you are sure the first query will pull two...
And you are sure the first query will pull two rows? I would verify that first by using this code:
$query = "SELECT * FROM orders WHERE customeremail = joe@example.com";
$result =...
Forum:
PHP
12-14-2011, 02:50 PM
Replies:
2
Assign class to navigation in Wordpress
Views:
315
Posted By
resdog
adding the "selected" class to a page is...
adding the "selected" class to a page is dynamic/automatic. How are you creating the links? If you are hard coding it, then you need to rework it so you use one of WordPress' menu functions:
...
Forum:
HTML & CSS
12-14-2011, 02:42 PM
Replies:
3
background hides behind overlapping div even with higher z-index
Views:
2,336
Posted By
resdog
piggy backing off of what teedoff said, only...
piggy backing off of what teedoff said, only elements that are "position"'d can have z-index applied to them.
Forum:
HTML & CSS
12-14-2011, 01:23 PM
Replies:
7
hover help with sprites
Views:
558
Posted By
resdog
There's no reason to add the span tags, you...
There's no reason to add the span tags, you should style the a tags directly - this will allow you to do the hover states. Also, it would be better to give them IDs that give a better example of what...
Showing results 1 to 25 of 233
Page 1 of 10
1
2
3
>
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
05:51 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.