Forum Replies Created
-
Abraham Chaffin
January 9, 2009 at 5:06 pm in reply to: Adding 2 Overlay Windows to the same page – different linksI see the issue…
It’s in this block of code:
function clicker(wind){ var thediv=document.getElementById('displaybox'); if(thediv.style.display == "none"){ thediv.style.display = ""; var myWins=new Array(); myWins[1]=thediv.innerHTML = "Eve_produ"; myWins[2]=thediv.innerHTML = "your code"; }else{ thediv.style.display = "none"; thediv.innerHTML = ''; } return false; }The part that says:
myWins[1]=thediv.innerHTML =
and
myWins[2]=thediv.innerHTML =should say:
myWins[1]=
and
myWins[2]=then below that right before the
}else{
you should put
thediv.innerHTML = myWins[wind];
So the modified code block would be something like:
function clicker(wind){ var thediv=document.getElementById('displaybox'); if(thediv.style.display == "none"){ thediv.style.display = ""; var myWins=new Array(); myWins[1]="Eve_prod"; myWins[2]="your code"; thediv.innerHTML = myWins[wind]; }else{ thediv.style.display = "none"; thediv.innerHTML = ''; } return false; }If that doesn’t work you might go back to the post you saw that work in and reevaluate it because it does deviate from how that post says you should be doing this.
-
Abraham Chaffin
January 9, 2009 at 4:33 pm in reply to: Adding 2 Overlay Windows to the same page – different linksPost a link to the page that is having the issue so I can take a look. Hard to debug that one without seeing the code.
-
Abraham Chaffin
January 9, 2009 at 3:58 pm in reply to: Adding 2 Overlay Windows to the same page – different linksYou might need to set the z-index of the over lapping layers even higher than the spry. The Spry z-indexes are set very high like to 1020 so you may need to set the z-index parameter of the #displaybox to like 10000. Try adding this code to the CSS of the displaybox:
z-index: 10000;
Final modified CSS code will look something like this:
#displaybox { z-index: 10000; filter: alpha(opacity=50); /*older IE*/ filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50); /* IE */ -moz-opacity: .50; /*older Mozilla*/ -khtml-opacity: 0.5; /*older Safari*/ opacity: 0.5; /*supported by current Mozilla, Safari, and Opera*/ background-color:#000000; position:fixed; top:0px; left:0px; width:100%; height:100%; color:#FFFFFF; text-align:center; vertical-align:middle; } -
Abraham Chaffin
January 8, 2009 at 3:30 pm in reply to: What is a COW friend ? And do we really need them ?That’s an interesting idea Bob.
I admit the friendship area is not fully developed at the moment though I believe it will be a handy part of the site in the future due to the fact that it is a network of people and you want certain people closer to you than others for various reasons.
At the moment there are a couple things that having friendship with someone does. First it lets you converse with that person on their profile or them on yours by adding notes. Secondly in the blogs you can post blogs that only your friends see. Optioning to display your email address to friends would be a good idea as well. More will come in the future I’m sure.
-
Good Morning,
This is a leader setting thing. I’ve unsubscribed you from receiving email as a leader of the AE forum. Many leaders want to be notified of emails in each forum they host, some don’t. You start receiving them yesterday because of few of the leaders email addresses were broken and were fixed yesterday.
-
You could always look in our Services Directory under web. I’m sure there’s lots of companies in there that could help.
https://services.creativecow.net/c/Web
-
Yea – It’s a good thought and will be added in the future. We’ve just begun adding separate profile pages for different breakouts of users activity. The first breakout is going to be all the users tagged posts and posts that have been tagged, this is built and will be implemented once it is fully ironed. Comments would be a good next step as well.
-
They are ordered by rating primarily and then date added secondarily. The rating primarily is based on whether they are a leader or not at this point. I’m sure more rating abilities/mechanisms will be added in the future for people to vote on which services are beneficial and which are not but this has not been built yet.
-
Well I guess it is there – just assigned to Bob Rock… I assume that’s you or one of your colleagues.