Jump to content

electroscitech

Members
  • Posts

    3
  • Joined

  • Last visited

electroscitech's Achievements

Newbie

Newbie (1/7)

0

Reputation

  1. DawnUnicorn,This is ElectroSciTech. I think that I know what you are attempting to do, and will attempt to help you get it done. I think that you need to know more about tables, such as their structure and the attributes for the tags that comprise the table. A table is of course made up of the 'table' (table), 'tr' (table row), 'th' or 'td' (table cell) tags that make up the table in rows with cells. If I remember correctly, the was a difference found between the 'th' and the 'td' tags, so I always used the 'td' tags because they were better for what I use them for. There are attributes on some of these tags, particularly the 'td', that may be important to you:For The 'td': > width="[pixels or percent]" - Specifies the width of the cell. > height="[pixels or percent]" - Specifies the height of the cell. > colspan="[number of cells]" - Makes the cell take up more that one column. > rowspan="[number of cells]" - Makes the cell take up more that one row. > align="[left|center|right|justify]" - Aligns the content of the cell. > valign="[top|middle|bottom|baseline]" - Aligns the content of the cell. > bgcolor="" - Specifies the background color of the cell. Also, 'td' elements seem to be able to hold almost any other tag, so you can put whatever you want in your cell, including text formatting, graphics and other tables. Now I will give you an example on what I have shown you above: <table><tr><td rowspan="2">A1</td><td colspan="2">A2</td></td><tr><td>B1</td><td>B2</td></tr></table> The code above creates a table matrix of 3 columns and 2 rows. The matrix distribution is shown below:A1|A2|A2A1|B1|B2The first 'td' has a rowspan attribute that likes to force it's way down, displacing anything in it's way, as it did with the 'B1' and 'B2' cells. Then the second 'td' has a colspan attribute that likes to force it's way to the right, so no 'A3' cell was needed. The other cells take up there position in the flow, as the 'B1' and 'B2' elements did. An example for something like what your competition has done is below: <table width='"100%" bgcolor="#FF00FF"><tr><td align="center" bgcolor="#880088" colspan="2">Title HTML</td></tr><tr><td align="center" rowspan="2">Image HTML</td><td align="left" height="50">Subtitle HTML</td></tr><tr><td align="left" valign="justify">Paragraph HTML</td></tr></table> I hope that this gave you the information you were looking for. Good luck on your project. Good Luck,ElectroSciTech
  2. Greetings Timoyork,This is ElectroSciTech. I think that I can help you with some of that as well. I was curious if you have a URL which it would be displayed on. I did the website on a disk as a resume for a job and wrote the AutoRun.inf file for that, as well as I was considering the idea of creating such a website for the fun of it, saying that the author of my website does not know anything about web design, for fun, and was going to have the paragraphs that people are supposed to read blink and the links trying to outrun the cursor and that kind of thing. I do not know if I will ever get around to that one.Now that I have introduced myself, I would like to understand your needs and help you with your project. I have to say, for the class of project that is sounds like you are working on, I must commend you for picking Graphics Interchange Format (GIF) files for your images, as they are the most effective image format that I know about for making your website what you want it to be. Now for your questions:1.)Random Links You said that you have made a list? Depending on the format, you may need to modify or redo the list. If you are making the website on a diskette, we will count server script out. I will give you some sample JavaScript code for use with random links: <head><script language="JavaScript">var MyDestinations=new Array("Your","Links","Here");//Note: Put your link URLs in the quotes, and make more comma separated sets of quotes if needed.var a;function RandomLink(){a=Math.round(Math.random()*MyDestinations.length);if(a==MyDestinations.length){a=0;}window.location.href=MyDestinations[a];}</script></head><body><!-- The link below will be random, so use it when you want a random link, just replace the bracketed values with your own values. --><a href="#" onclick="java script:RandomLink();">[Your Links Text]</a></body></html> 2.)I have not worked with Adobe Image Ready, but if you get access to your source HTML that Image Ready Generates, you will be able to manually edit that code and make any of the following shapes: > Rectangle ("rect") {TopLeftHorizontalPosition,TopLeftVerticalPosition,BottomRightHorizontalPosition,BottomRightVerticalPosition} > Circle ("circ") {CenterHorizontalPosition,CenterVerticalPosition,Radius} > Polygon ("poly") {HorizontalPosition,VerticalPosition,[RepeatSequenceUntilAllPointsAreMade]}When you change your code in your area tags, you will need to change the shape attribute to the value for the shape that you want. The values for the shapes are shown above in the quotes next to the name of the shape. Also, if these image map areas are what you want to be random, add the code for the JavaScript above and use the "href" and "onclick" attributes from the "a" tag above in your "area" tag. Then you need to edit the "coords" attribute so that it will display the correct clickable area. The coords are described in the curly braces above.3.)To make an image invisible until it is passed over, first create a transparent GIF image. Then you need to add JavaScript code to the images like in the sample code below: <head><script language="JavaScript">function ImageChange(imageindex,imageurl){document.images[imageindex].src=imageurl}</script></head><body><img src="[blankimage.gif]" onmouseover="java script:ImageChange([0],'[realimage.gif]');" onmouseout="java script:ImageChange('[0]','[blankimage.gif]');"></body> To use this code, replace the bracketed values in the HTML attributes with what you want and keep the numbers on the first JavaScript argument incrementing from the start of the document (0) to the end of the document (number of images-1). NOTE: If you have any images that do not switch out, do not add the MouseOver and MouseOut attributes, but count them for your next number, as shown above.4.)I am sorry, but especially for Apple Macintosh users, I do not know of an editor for HTML. The best thing to do in your situation is to attempt to locate a simple text editor and hand edit the work.5.)I do not know for sure about IPods, but I know that you could write a website for a cellular telephone. You will need to rewrite your pages greatly because standard HTML will not run on most mobile devices, such as cellular telephones. You need to learn about Wireless Modeling Language (WML) and I do not expect that you will be able to place the website that you are attempting to build on a mobile device, because the images and scripting is very different for mobile devices. If you wish to learn more about WML, you should visit the W3Schools Wireless Access Protocol (WAP) Tutorial.6.)As for making your website so that you can insert a CDROM into your drive and have the website pop up, there is a solution that I know works on Microsoft Windows based computers. The solution is an AutoRun.inf file on the root directory of the CDROM that you are burning. It is just like a text file, but named "AutoRun.inf", lives in the root directory of your CDROM and has content that tells the computer what to do when the disk is inserted into the drive. An exmple of the content for such a file is below: [AutoRun]Open=Explorer.exe [websitelocation] The code above requires a Microsoft Windows Platform to run. You will need to replace the [websitelocation] in order for this content to function. If you are placing the website on the disk, then you will need to replace [websitelocation] with the filename of the HTML file that you want to be your default document, or start/home page of the website (whichever file is supposed to be shown first). If you are hosting your website on a server, you will need to write the full url, like "http://www.funnychaossite.fun/" in place of the [websitelocation]. Once the CDROM is final (closed), it should no longer start under the control of your CD burning software, but under the Microsoft Windows shell, which should then parse your AutoRun.inf file and display your page.Good luck with your project, and I do hope that it will be completed without complications from here on out for you. If you need anything else, please let me know (PM system). Please let me get your URL of your website when you complete it, if it goes online. Good LuckElectroSciTech
  3. I really like that new website execpt for 4 things. The first issue that I have is that the sidebar headers to the left look too much like your links at the top of your page. The next issue is that all of your content is repeated, example text, which I am sure that you will fix. The third issue is the broken links, which I am sure is because you are not done with the website. The worst broken link is the ones that go to "contact-us.html". Other broken links appear to be caused by bookmark links that are used by your links at the top appear to all be formated for the local page but are being used on other pages. If you want to be sure that those links will work regardless of your active page, include more in the bookmark link. An example of this is if you have a page named "contact-us.html" and have a bookmark like "<a name='contact-webmaster'>Webmaster's Contact Information</a>", you could always link to that page by using a link like "<a href='contact-us.html#contact-webmaster'>Get contact information for the webmaster</a>". The last issue that I have is that I really like the overall design and look, but as I saw in your other replies, it seems that if I like it, the rest of the world will not like the colors or the layout. I hope that this is one of the times that other people will like what I like. That is all I have to say about your website at a glance; overall I like it.
×
×
  • Create New...