Go Back   CodingForums.com > Search Forums

Before you post, read our: Rules & Posting Guidelines

Showing results 1 to 25 of 52
Search took 0.09 seconds.
Search: Posts Made By: Candan
Forum: Small projects (quick fixes and changes) 08-08-2010, 10:06 PM
Replies: 3
Views: 1,423
Posted By Candan
Plus, the amount of urls you enter do matter,...

Plus, the amount of urls you enter do matter, since if its alot, your going to have to set a setting in your php.ini to a higher amount, so that the script can be ecuted past the what is the default?...
Forum: HTML & CSS 08-04-2010, 06:02 AM
Replies: 7
Views: 3,091
Posted By Candan
Try putting some content in your div's. Then in...

Try putting some content in your div's. Then in your wrapper's css block:
height:auto;
Forum: Small projects (quick fixes and changes) 07-29-2010, 10:58 PM
Replies: 6
Views: 1,383
Posted By Candan
So how is the script supposed to define how...

So how is the script supposed to define how popular a article is?
Unique views?
Rating?
Just views(non unique)
Or what?
Forum: Small projects (quick fixes and changes) 07-29-2010, 08:51 PM
Replies: 6
Views: 1,383
Posted By Candan
How are you determining if an article is popular...

How are you determining if an article is popular or not then?
Forum: Graphics and Multimedia discussions 07-29-2010, 10:53 AM
Replies: 9
Views: 8,942
Posted By Candan
1. Make a rounded rectangle 2. Layer >...

1. Make a rounded rectangle
2. Layer > Rasterize > Shape
2. Set fill to 0% (the one above your layer list, and beneath your opacity changer)
3. Right click on ur rounded rectangle layer
4....
Forum: Small projects (quick fixes and changes) 07-25-2010, 05:32 PM
Replies: 9
Views: 5,445
Posted By Candan
WTB Automatic Lock Feature. This post dates...

WTB Automatic Lock Feature.

This post dates back from 9th Jan 2008., thats like raising someone from the dead, who died 2.5 years ago.
Forum: HTML & CSS 07-24-2010, 03:50 AM
Replies: 13
Views: 1,976
Posted By Candan
This seems to work, just gotta add the php code...

This seems to work, just gotta add the php code to grab the link.
<html>
<head>
<title></title>
<style type="text/css" media="screen">
body { margin: 0; padding: 0; }
#overlay {...
Forum: HTML & CSS 07-23-2010, 01:25 PM
Replies: 3
Views: 954
Posted By Candan
Yea you can, after the semi-colon from the call...

Yea you can, after the semi-colon from the call to change(), you put your other code.

so like

onmouseover="change('google'); <!-- Doo stuff !--->"
Forum: PHP 07-22-2010, 05:15 AM
Replies: 2
Views: 425
Posted By Candan
"SELECT id FROM " You're only selecting the...

"SELECT id FROM "

You're only selecting the id, not the amount of credits.



$drawquery = mysql_query("SELECT id, credits FROM userstats WHERE `todaysurfed`>=250 AND...
Forum: Graphics and Multimedia discussions 07-22-2010, 05:06 AM
Replies: 10
Views: 2,965
Posted By Candan
Your best bet would be with CSS. HTML: <a...

Your best bet would be with CSS.

HTML:
<a href="http://google.com" id="google_link"></a>

CSS:

#google_link{
width:100px;
height:36px;
Forum: HTML & CSS 07-22-2010, 05:00 AM
Replies: 3
Views: 954
Posted By Candan
<html> <head> <script...

<html>
<head>

<script type="text/javascript">

function change(url) {

a = document.getElementById('change_frame')
a.src = url
Forum: HTML & CSS 07-21-2010, 01:04 PM
Replies: 6
Views: 1,065
Posted By Candan
ID is supposed to be different for each element....

ID is supposed to be different for each element. Thats why its getElementById .
Give your qty id'd elements a name and use getElementsByName("NAME") instead of getElementById
Forum: JavaScript programming 07-14-2010, 11:30 AM
Replies: 5
Views: 646
Posted By Candan
it'd be better to fix the error, since if theres...

it'd be better to fix the error, since if theres an error, you messed up somewhere.

What does the error say?
Forum: JavaScript programming 07-14-2010, 10:07 AM
Replies: 2
Views: 460
Posted By Candan
doucment.write("<a href='http://youtube.com/"+...

doucment.write("<a href='http://youtube.com/"+ ref +"'>Click here!</a>");
Forum: PHP 07-10-2010, 03:44 PM
Replies: 7
Views: 743
Posted By Candan
Dynamic menu's by using a database needs PHP, or...

Dynamic menu's by using a database needs PHP, or another server sided language.
Forum: Computer Programming 07-04-2010, 04:02 PM
Replies: 6
Views: 1,862
Posted By Candan
One character converted in binary must equal...

One character converted in binary must equal eight numbers.
1 = 00110001
9 = 00111001

Therefor you formula on binary fails.
Forum: HTML & CSS 07-03-2010, 08:49 AM
Replies: 3
Views: 2,508
Posted By Candan
Where is this table you are referring too? Is it...

Where is this table you are referring too? Is it the first occurence of <table when you search for it in the source code? Ifso, try changing Border="0" to border="1". 0 means No in computer language,...
Forum: JavaScript programming 06-29-2010, 12:45 AM
Replies: 7
Views: 2,133
Posted By Candan
You could store the string in a variable in the...

You could store the string in a variable in the for loop, and then document.write(varname) at the end.
Forum: HTML & CSS 06-28-2010, 07:32 AM
Replies: 6
Views: 694
Posted By Candan
The problem is, your not defining a fixed width...

The problem is, your not defining a fixed width for the wrapper. When you give both your left, right and wrapper a fixed width, they will work like that fark website.

Html:

<div id="gamewrap">...
Forum: HTML & CSS 06-28-2010, 06:38 AM
Replies: 6
Views: 694
Posted By Candan
Try this: html: <div id="gamewrap"> <div...

Try this:
html:

<div id="gamewrap">
<div id="gameleft">
This is the left column.
</div>
<div id="gameright">
This is the right column
</div><!-- End gameright -->
Forum: HTML & CSS 06-28-2010, 06:27 AM
Replies: 2
Views: 779
Posted By Candan
Its your html. Remove the whole div: <div...

Its your html. Remove the whole div:

<div id="sitename">%%TITLE%%</div>
Forum: HTML & CSS 06-28-2010, 04:21 AM
Replies: 2
Resolved 100% Height Divs
Views: 694
Posted By Candan
Before you end your white box's div add: (So like...

Before you end your white box's div add: (So like <div class="white_box"> all your other stuff ----PUT CODE HERE </div>)
<div class="clear"></div>

Do the same for your blue box.

Now go to the...
Forum: HTML & CSS 06-28-2010, 04:12 AM
Replies: 1
Views: 1,140
Posted By Candan
If you noticed how it still keeps the scrolling...

If you noticed how it still keeps the scrolling bar when you change the contains width to 200px, or even higher, you'll know its the float:right; doing it. I changed it to float:left; and it removed...
Forum: JavaScript programming 06-24-2010, 02:51 PM
Replies: 3
Views: 587
Posted By Candan
Also, wouldn't you rather use it in a function,...

Also, wouldn't you rather use it in a function, ex.:


<script type="text/javascript">
function ShowHide(){
var MyAnchor = document.getElementById('show_hide');
var MyInfo =...
Forum: JavaScript programming 06-24-2010, 11:52 AM
Replies: 9
Views: 995
Posted By Candan
Sessions can be hi-jacked.

Sessions can be hi-jacked.
Showing results 1 to 25 of 52

 
Forum Jump

All times are GMT +1. The time now is 01:48 PM.