Search Results

Showing results 1 to 40 of 247
Search took 0.02 seconds.
Search: Posts Made By: cmills83
Forum: JavaScript / DHTML / AJAX 27 Days Ago
Replies: 1
Views: 253
Posted By cmills83
Hi

I have a page with a bunch of divs set to display:none with 70kb background images. As buttons are clicked the divs are displayed. The background images are specified in an external...
Forum: JavaScript / DHTML / AJAX Oct 1st, 2009
Replies: 2
Views: 438
Posted By cmills83
Didnt seem to work, I need to stop the fades I have going on because they have a delay on them. Any idea how to apply the stop() to a fade, i tried this but it didnt work:

...
Forum: JavaScript / DHTML / AJAX Sep 29th, 2009
Replies: 2
Views: 438
Posted By cmills83
Hi not sure if its technically a timeout but I am building a sliding jquery nav, the sliding is fine.

theres 4 buttons you can click whatever one and they will slide into place even if they are in...
Forum: JavaScript / DHTML / AJAX Sep 24th, 2009
Replies: 6
Views: 551
Posted By cmills83
yeah been searching, Ive run into this before hopefully safari will fix it in a new version I dont think theres a fix.
Forum: JavaScript / DHTML / AJAX Sep 23rd, 2009
Replies: 6
Views: 551
Posted By cmills83
wait yeah wmode transparent is on the swf thanks
Forum: JavaScript / DHTML / AJAX Sep 23rd, 2009
Replies: 6
Views: 551
Posted By cmills83
Hi thanks for the reply, I am layering a div over flash not flash over a div, would changing the wmode have any effect on this? thanks
Forum: JavaScript / DHTML / AJAX Sep 22nd, 2009
Replies: 6
Views: 551
Posted By cmills83
Hi

I have a few javascript calls that hide/show divs over a flash movie and even a css/jquery drop down nav that overlaps over the flash movie.

IE6, IE7, IE8, FF2 pc, FF3 pc, and even FF mac...
Forum: HTML and CSS Feb 12th, 2009
Replies: 5
Views: 541
Posted By cmills83
you should be fine then, sometimes theres ie6 issues with the display:table
Forum: HTML and CSS Feb 12th, 2009
Replies: 7
Views: 601
Posted By cmills83
em and %'s arent good to use unless your site is completely expandable which is not common. fixed width divs are generally used.
Forum: HTML and CSS Feb 12th, 2009
Replies: 10
Views: 1,388
Posted By cmills83
<html>
<head>
<style type="text/css">
body {
margin:0;
padding:0;
background:#cecece;
}
#wrap {
width:960px;
Forum: HTML and CSS Feb 12th, 2009
Replies: 5
Views: 541
Posted By cmills83
Forum: HTML and CSS Feb 12th, 2009
Replies: 7
Views: 601
Posted By cmills83
hey

your problem is your using frontpage, ie and frontpage are both microsoft so thats why it works on ie. in the web industry you code for firefox and safari and tweak for ie if necessary but...
Forum: HTML and CSS Feb 11th, 2009
Replies: 7
Views: 2,177
Posted By cmills83
also you can use the css sprite nav that uses the javascript sfhover function, google and youll see it.
Forum: HTML and CSS Feb 11th, 2009
Replies: 3
Views: 519
Posted By cmills83
yeah dont link divs, its not x-browser friendly,
add this:

.partdiv {
position:relative;
}
.partdiv a {
width:150px;
height:50px;
display:absolute;
Forum: HTML and CSS Feb 11th, 2009
Replies: 5
Views: 596
Posted By cmills83
yeah i wouldnt do #1 unless your site is completely expandable, if you are using fonts as em instead of px you'll have xbrowser issues if you have any fixed height elements
Forum: HTML and CSS Feb 11th, 2009
Replies: 5
Views: 541
Posted By cmills83
make the margin for widgetWrapper like this


margin:0 auto;

or

margin-left:auto;
margin-right:auto;
Forum: JavaScript / DHTML / AJAX Nov 11th, 2008
Replies: 1
Views: 1,075
Posted By cmills83
probably cant modify the affiliate code if youre not hosting the ads but just add a z-index:999; to the js hover div? make sure it is position: relative or absolute;
Forum: JavaScript / DHTML / AJAX Nov 11th, 2008
Replies: 3
Views: 4,505
Posted By cmills83
thanks for the replies i ended up doing this


function createDivs() {
var div = document.createElement('div');
var container = document.createElement('div');
div.id = 'overlay';...
Forum: HTML and CSS Nov 11th, 2008
Replies: 7
Views: 1,275
Posted By cmills83
after the </ul> add <div class="clear"></div>


.clear { clear:both; }


to clear out the float left so you can put stuff below
Forum: HTML and CSS Nov 11th, 2008
Replies: 7
Views: 1,275
Posted By cmills83
.cards ul li { width: 103px; display: inline; }
to
.cards ul li { width: 103px; float:left; }
Forum: HTML and CSS Nov 11th, 2008
Replies: 7
Views: 825
Posted By cmills83
xhtml, css, ajax, javascript, actionscript. You should start learning flash/actionscript/flex/air
Forum: HTML and CSS Nov 11th, 2008
Replies: 1
Views: 433
Posted By cmills83
use a content management system of some kind, wordpress maybe or build your own.
Forum: HTML and CSS Nov 11th, 2008
Replies: 7
Views: 1,462
Posted By cmills83
add this to the head of the pages

window.onload = function() {
divSize();
}


or <body onload="divSize();">
Forum: HTML and CSS Nov 11th, 2008
Replies: 7
Views: 1,462
Posted By cmills83
yea never gotten 100% height working in all browsers w/o js. change your .container to #container


function divSize() {
winH = document.body.offsetHeight;
totalHeight =...
Forum: HTML and CSS Nov 11th, 2008
Replies: 2
Views: 501
Posted By cmills83
Sounds like a broken image, check the path.
Forum: HTML and CSS Nov 11th, 2008
Replies: 7
Views: 1,275
Posted By cmills83
duno why my response didnt show up wrap cards in <p class="imgtxt">Cards</p>


p.imgtxt {
margin:0;
padding:0;
width:103px;
text-align:center; /* optional */
}
Forum: HTML and CSS Nov 11th, 2008
Replies: 3
Views: 3,175
Posted By cmills83
This works on IE6, IE7, FF, Mac FF, Mac Safari, Mac Opera
Forum: HTML and CSS Nov 11th, 2008
Replies: 3
Views: 3,175
Posted By cmills83
I found a few simple overlay lightboxes but none would resize with the browser and none were cross browser friendly. This was designed to display a div but uses innerHTML so this could easily be...
Forum: JavaScript / DHTML / AJAX Nov 8th, 2008
Replies: 3
Views: 4,505
Posted By cmills83
i have tried a few tutorials but i cant get this working. I am trying to create a div with the id of overlay and insert it right after the body tag when a function is run. can anyone help? thanks
Forum: JavaScript / DHTML / AJAX Nov 3rd, 2008
Replies: 1
Views: 2,529
Posted By cmills83
hi

i have a parent window with an external url iframe. when the parent loads i want to set the iframe footer to display:none;. is there a way to do this? i have looked all over w/no luck.
...
Forum: JavaScript / DHTML / AJAX Oct 29th, 2008
Replies: 2
Views: 996
Posted By cmills83
first page is just has a target blank link in the flash then the page that is opened has:


function swapWin(winLink) {
if (window.opener != null && !window.opener.closed) {...
Forum: JavaScript / DHTML / AJAX Oct 27th, 2008
Replies: 2
Views: 996
Posted By cmills83
Hi

for some reason my script wont detect the opener window when the page is launched target blank from flash, but detects it fine when its launched from target blank html. of course this problem...
Forum: JavaScript / DHTML / AJAX Oct 20th, 2008
Replies: 1
Views: 506
Posted By cmills83
Nevermind, this code seems to work fine, something else on the site is causing it not to work. If anyone ever wants to use this, use the script above and also:


<a href=""...
Forum: JavaScript / DHTML / AJAX Oct 20th, 2008
Replies: 1
Views: 506
Posted By cmills83
Hi


function winSwap(winLink) {
alert('function called');
var newWin = winLink;
if(window.opener && !window.opener.closed){
window.opener.location = winLink;
window.opener.focus();...
Forum: HTML and CSS Oct 16th, 2008
Replies: 1
Views: 1,155
Posted By cmills83
The font is set in em, I know if I set in px this issue wont occur but they want to use em for handicapped people, etc.

Ill try setting the font to em in a global stylesheet then setting to px in...
Forum: HTML and CSS Oct 16th, 2008
Replies: 1
Views: 1,155
Posted By cmills83
Is there a way to override the IE user set font size. Basically when I user increases the font size in the IE preferences. Would !important; on the font css tag fix this? Thanks!
Forum: JavaScript / DHTML / AJAX Oct 14th, 2008
Replies: 0
Views: 1,128
Posted By cmills83
Hi,

I wrote a script to focus back to the parent window and change the url. easy. anyways, it works fine in all browsers but if the browser is using tabs it still changes the url of the parent...
Forum: HTML and CSS Jul 22nd, 2008
Replies: 3
Views: 2,998
Posted By cmills83
Hi I have a div holding a swf inside a container div. The div moves around and eventually ends up on the left and every other browser I test in (ie6, ie7, ff, safari) the swf going outside the...
Forum: HTML and CSS Jul 17th, 2008
Replies: 2
Views: 3,515
Posted By cmills83
The problem was bc I was using filter and opactiy on the lightbox style div instead of a transparent png. The flash movie in mac firefox was inheriting the opactiy from that other div it was layered...
Forum: HTML and CSS Jul 12th, 2008
Replies: 2
Views: 3,515
Posted By cmills83
Hi

I am developing a site with something like below as the structure. The nav container holds a flash nav swf.

I built a toned down lightbox effect and the popup is the center of that.
...
Showing results 1 to 40 of 247

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC