Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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

 
Forum Jump

All times are GMT +1. The time now is 05:51 AM.