One solution would be to use an iframe with css hover effects...but I agree with the others.
We need to see an example of what you are talking about.
One solution would be to use an iframe with css hover effects...but I agree with the others.
We need to see an example of what you are talking about.
...and
a:link img, a:visited img { border: 1px solid #000000 }
a:hover img { border: 1px solid #FF0000 }
didn't work?
I thought the purpose of forums was to ask for help on issue you may need, and or offer assistance to others who may have an issue you have encountered and know the solution to. I'm sure he was aware that it may take some time to get a reply and if he posted here, then he was most likely perfectly fine with waiting for what we hope is some quality feedback and assistance. While I am a firm believer that you should first try to help yourself and do as much research as possible before posting your question to a forum, practically telling someone to hit search engines and not bother to post IMHO is just not cool. That gives the poster a feeling that he is asking the "dumb' question, and no question asked is dumb. The only dumb question is the one NOT asked. I'm new to the forums, but as in any forum we want to promote an open and positive place for people to ask questions.
**Steps off soapbox**
templar,
You are absolutely correct...this IS the place to ask questions. Please don't be discouraged but the wayward ill comments of the few.
well ive made a huge step forward, im not sure why i didn't realize this before, but i have to export as an .htm document, the new problem is, when i open the htm file the links dont work
Can you upload an htm file so I can look at it?
Huh, what. can you be less vague? ;)
Well...I suppose I could have just put a question mark. :rolleyes:
I missed the link, so I had no clue what you were refering to.
Now that I actually clicked on it, I understand.
I'm not sure if this is the type of dropdown menu she was refering to, the one I posted isn't a form menu.
OK...I'm trying to get a handle on this...
Are you trying to place one table on top of another?
huh?
It will take me awhile to get to it.
I had a double router meltdown and I was forced to wipe my hard drive.
It takes forever to reload everything.
You can upload the file here so we can take a look.
I thought the same thing...but after trying everything under the sun, including installing and additional NIC card and reinstalling my operating system...I took the new router back and it WAS bad.
Now on my third router.
It initially didn't want to work either...even with the installation CD. After about an hour I found another LinkSys router installation utility...and after another hiccough or two...my network is finally up and running again.
Now I have to reinstall all of my software again...just as soon as the 63 Windows critical updates are done downloading and installing...LOL!
It's actually pretty simple. I found a good tutorial that will help:
http://www.tizag.com/phpT/include.php
That does look pretty simple...
...and this doesn't reload the menu.php file every time a new page is loaded?
Somebody?
Anybody?
I can't even ping the router...I get
"destination host unreachable"
I found the problem...
You have
<p class=bullets11bldblck align=center>
<br>
<noscript>
<object codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0 height=185 width=300 classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>
<param name="movie" value="Resources/HollandRoll.swf">
<param name="quality" value="high">
<embed src="Resources/HollandRoll.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="300" height="185">
</embed>
</object>
</OBJECT>
</noscript>
</p>
You need to remove the noscript tags and that extra closing object tag.
<p class=bullets11bldblck align=center>
<br>
<object codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0 height=185 width=300 classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000>
<param name="movie" value="Resources/HollandRoll.swf">
<param name="quality" value="high">
<embed src="Resources/HollandRoll.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="300" height="185">
</embed>
</object>
</p>
Yeah...without some type of server-side programming, the only way I know of to do that is with frames.
With those nesting errors, I'm suprised the page showed properly at all.
Here is the corrected code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>college recruit video - low res</title>
<meta name="GENERATOR" content="Freeway Pro 4.0.4">
<meta http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
body {
margin-left:0px;
margin-right:0px;
margin-top:0px;
background-color:#76797c;
background-image:url(Resources/bg_gray.gif)
}
p:first-child { margin-top:0px }
table { empty-cells:hide }
._sp { font-size:1px; visibility:hidden }
._lp { margin-bottom:0px }
.pixel1 { font-size:1px }
.style14 { text-align:right }
.style15 {
color: #FFFFFF;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
a:link {
color: #FFFFFF;
text-decoration: none;
}
a:visited {
color: #33FFFF;
text-decoration: none;
}
a:hover {
color: #FFFF00;
text-decoration: underline;
}
a:active { text-decoration: none; }
.style16 {
color: #FFFFFF;
font-weight: bold;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
-->
</style>
<script type="text/javascript">
<!--
var fwIsNetscape = navigator.appName == 'Netscape';
fwLoad = new Object;
function FWLoad(image) {
if (!document.images)
return null;
if (!fwLoad[image]) {
fwLoad[image]=new Image;
fwLoad[image].src=image;
}
return fwLoad[image].src;
}
fwRestore = new Object;
function FWRestore(msg,chain) {
if (document.images)
for (var i in fwRestore) {
var r = fwRestore[i];
if (r && (!chain || r.chain==chain) && r.msg==msg) {
r.src = FWLoad(r.old);
fwRestore[i]=null;
}
}
}
function FWLSwap(name,msg,newImg,layer,chain,trigger) {
var r = fwRestore[name];
if (document.images && (!r || r.msg < msg)) {
var uselayers = fwIsNetscape && document.layers && layer != '';
var hld;
if (uselayers)
hld = document.layers[layer].document;
else
hld = (document.all) ? document.all : document;
var im = hld[name];
if (!im.old) im.old = im.src;
im.msg = msg;
im.chain …
I don't know if this is the place to ask...
Last night I was on my computer when the connection failed...limited or no connectivity.
After several hours of reconfiguring the router rebooting the PC, router, uninstalling and reinstalling the network card...still nothing.
If I connect directly to teh DSL modem...I can connect (obviously).
So I went out and bought a new router.
After installing my new NetGear MR814...I had internet connectivity...joy!
When I came back a few hours later...same problem...no DSL connectivity.
P.S. I can't even connect to the router anymore using the 192.168.1.1 or 192.168.0.1 (or anything else for that matter).
Anyone have a clue what the heck is going on here?
Is this something I can look at online?
I have no clue at the moment...but might be able to figure it out if I play with it.
I took a look at your site in both IE and FireFox and the only problem I see is that your ministry partners section is spilling over your footer
Here's a question...can you click on your SWF file in Windows Explorer and view the video correctly?
I'd need to see your code or the site...
Can you post your code or direct me to the site so I can take a look?
Here are a couple of sites for you...
http://www.uoguelph.ca/ccs/accounts/website/manage/configure.shtml
That's because png is a graphic file...not a page.
You have to put your png graphics on a web page and then link the pages.
Nevermind...I got it.
Some program I installed added another program that attached itself to the office programs.
I got rid of it and all is well now.
we were all beginners once...and the little details are easy to overlook.
I've had this problem myself...lol That's wht I knew the answer!
You need to add a width to your table.
I'm trying to create a small website for my family using Fireworks, i have searched high and low and couldn't find a single answer to my question....How do you link a fireworks page to another fireworks page, i know that i can link them with url's, but that's just it, they're not on the web yet, so they don't have url's
any answers, or advice on where to look will be GREATLY appreciated.
wouldn't relative links work for that?
so what if you own your domain, can you just make sub domains? or do you have to pay or something?
My hosting company allows me to create them at no charge from my control panel...you can also use your .htaccess file to add subdomains.
Is there such a thing as an easy drop down menu?
I have written a dropdown menu which I have attached to this post...
Simply modify array in the .js file to add/remove menu items.
The css file controls the look, and you can change the images for the menus from there.
The only note to keep in mind is that the css entry .topMenu { float: } is required for the menu to work. The javascript uses this entry to put the top menu buttons in the same order for both left and right float options.
If you have any questions, let me know.
As for modifying scrollbar colors, this is not possible under the xhtml DOCTYPE and only works in IE without a DOCTYPE.
I haven't used my PowerPoint in forever, but when I tried to modify an old presentation today I could not use the mouse to drag objects. Then I tried clicking on the file menu and found I couldn't unless I right-clicked somewhere on the screen first.
Any time I click on a frame, my ability to mouse-click is gone until I right-click again.
I even reinstalled Office 2003 and installed all the updates again...it didn't solve the problem.
Any clue what the heck is going on here?
The css should kick in once the page is written.
Give the banner image an id and write the css for it.
Using the images from the post below, this displayed nicely in IE and Firefox...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
body {
background-image: url(bg-4.gif);
background-position:top center;
margin: 0px;
padding: 0px;
}
#main {
background-image: url(bg-4-gradient.gif);
background-position:top center;
background-repeat:repeat-x;
height:300px
}
</style>
</head>
<body>
<div id="main">
<div id="globalWrapper">stuff
</div>
</div>
</body>
</html>
Use the css style overflow: scroll
php is beyond my little brain at the moment...
for a banner...the quick and dirty javascript is
document.write('<a href="bannerLink.htm"><img src="yourImage.jpg" /></a>');
basically whatever you would put on the html page, you enclose in document.write(' ');
in the javascript file.
You the just relace your html code with <<script type="text/javascript" src="yourScript.js"></script>
Let me know if you need more detail.
Ah...auto start.
You need to embed the sound.
<embed src="yourFile.wav" width="0" height="0" autostart="true" />
That's it!
I use javascript for this.
I have a menu.js file that wil update my menu links sitewide. I do the same for my footer as well.
If you are not trying to embed the file in a web page, you upload it to your server and access it like any other hyperlink.
<a href="yourSpeech.wav">Your Speech</a>
Javascript doesn't use the hyphens that are present in CSS.
As a general rule, if the CSS style is border-left, margin-top, etc, the javascript equivalent will be borderLeft, marginTop, etc.
What do the call that...camel code? Something like that.
I like the all-in-one form handler from bignosebird.com.
It will do exactly what you are asking for here...and it is free.
Your Web host probably has a mail script already installed on their server for you to use. Most give you some documentation on how to use it as well.
I haven't used any of them...but I see Joomla mentioned a lot.
You simply link to it like you would a web page.
<a href="document.pdf">PDF Document</a>
Unfortunately, it is a part of your host's cgi mail program.
For instance, in the BNB program, you add the following lines to your form:
<input type="hidden" name="ok_url" value="http://youtsite.com/thanks.html">
<input type="hidden" name="not_ok_url" value="http://yousite.com/error.html">
If they don't tell you how to override the default, you're probably out of luck.
Without seeing your script, I would suggest using an if statement.
something along the lines of
if (dateb-datea > 5) { alert('The dates are more than 5 days apart'); }
Yeah...that's what I said the first time I wanted to have form information sent back to me from a Web site.
I came across a script back then from a website called bignosebird.com.
You can check out the script for youself at
http://www.bignosebird.com/carchive/bnbform.shtml
It's free and comes with instructions.
The cgi mail script usually provides an option for which page to send the user to upon completion of the form
You'd have to use javascript to do that.
I want to match my own class selector and then modify the body.
//This does not work but to give you idea of what i am trying to do. .selector body {overflow:-moz-scrollbars-none;}
Do I have to use javascript to update the body style? I only want this style to be honored if a certain class is present in the body.
Wouldn'y you just use
.selector {overflow:-moz-scrollbars-none;}
or
body.selector {overflow:-moz-scrollbars-none;}
and then
<body class="selector">
or am I misunderstanding the question?