Computer Forums

Go Back   Computer Forums > Internet > Website Development

Website Development HTML, traffic, hosting, and more... this is the forum for every webmaster.

Register Now for FREE!
Computer Forums

Username: Password: Confirm Password: E-Mail: Confirm E-Mail:
Agree to forum rules 


Closed Thread
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-11-2007, 03:16 AM
blueparukia's Avatar
Nuisance Member
 
Join Date: 13 Apr 2007
Location: Australia
Posts: 455
blueparukia has a spectacular aura aboutblueparukia has a spectacular aura about
Default [SOLVED] Nav Bar and Flash Help!!!

I have two sites to build, and this is definetly the easiest.
I need a this cut into 5 images, as it serves as a Nav-Bar for my assignment:


I cant get it equal (same width and height), and it has to be done by tomorrow.

And if someone could help me with resizing the canvas in Macromedia Flash MX, that'd be great.

Now, here are the partitions for the Nav-Bar I'd like done.
leftbutton - the first part of the image, just the corner to the start of "staff"
staffbutton
downloadsbutton
subjectsbutton

rightbutton - the last part of the image, from the right of Subjects to the end of the Nav-Bar.

For my mum's major site, I have edited my post "Form Password"


Thanks,
BP
__________________
I am your friendly CompuForums moderator . Send me a Private Message if you have an issue with this site or a specific member. I am best at Web Development, though I will try to answer all your questions to the best of my ability.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Sponsored Links
  #2 (permalink)  
Old 06-11-2007, 05:04 AM
Tom Tom is offline
Gigabyte
 
Join Date: 16 Mar 2007
Posts: 409
Tom is a jewel in the roughTom is a jewel in the roughTom is a jewel in the roughTom is a jewel in the rough
Default

This should work for two images, with text in the middle:

Code:
<p><img src="/path to image.png" align=left> text here <img src="/path to image.png" align=right></p>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #3 (permalink)  
Old 06-11-2007, 05:32 AM
blueparukia's Avatar
Nuisance Member
 
Join Date: 13 Apr 2007
Location: Australia
Posts: 455
blueparukia has a spectacular aura aboutblueparukia has a spectacular aura about
Default

Thank you so much CityPCservice for all the help you have given me.

I'd like to take a moment of your time to tell you:
There's plenty more where that came from.

Thanks again.

The other site I'm working on is my mums, and I may be able to give you a paid position (not much) if you can help with PHP/Actionscript or can make a Register/Login database. (It's a business site)

Thanks again,
BP

EDIT: I made this for my site, do you reckon it'd be useful?
Code:
<small>&nbsp;&nbsp;&nbsp;&nbsp;<b><a href="mailto:youremail@adress">Blueparukia</a></b></small><br /> <div style="border:none; padding: 1px;"><div><button type="button" class="button" onclick="this.parentNode.parentNode.childNodes[1].style.display = ''; this.parentNode.style.display = 'none';" title="Blueparukia Rocks"><font color="#000000" size="1"><b>Blueparukia Rocks!!!!!</b></font></button></div><div id="spoiler" style="display: none;">&nbsp;<br />
Insert your text here
</div></div>

It makes a spoiler tag, you click on the button, and it shows the text. I used it for displaying the profiles of my teachers for my Business assignment. When you click on the teachers names, it creates an email message to send to them.

If you don't want it to email remove
Code:
<a href="mailto:youremail@adress">Blueparukia</a>
Where I have written "Your Text Here" is where you put the text you want to hide. Anything with "Blueparukia" in it is fully editable.
__________________
I am your friendly CompuForums moderator . Send me a Private Message if you have an issue with this site or a specific member. I am best at Web Development, though I will try to answer all your questions to the best of my ability.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #4 (permalink)  
Old 06-12-2007, 07:55 PM
Tom Tom is offline
Gigabyte
 
Join Date: 16 Mar 2007
Posts: 409
Tom is a jewel in the roughTom is a jewel in the roughTom is a jewel in the roughTom is a jewel in the rough
Default MailTo

Note that many email harvesters and spam bots search for "mailto:" syntax in websites. If you're going to use the mailto syntax, be sure to create an email account that is not your personal one -- otherwise, your inbox will become flooded with spam.

Also, I'll help you with as much coding as possible, at no cost. I believe in giving back freely what I have recived freely. Just post your help topics, and the good people here at CompuForums can work on them together with you.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #5 (permalink)  
Old 06-15-2007, 08:00 AM
blueparukia's Avatar
Nuisance Member
 
Join Date: 13 Apr 2007
Location: Australia
Posts: 455
blueparukia has a spectacular aura aboutblueparukia has a spectacular aura about
Default

Sorry I've been away. been sick

Thanks for your advice, though I just gave my teacher's email address, and I really don't care if people continously spam them lol.

Though the site itself is actually being placed on a CD.

I'm having an annoying problem though. It would be easier for me to display the site in IE, but it doesn't render well. Big boxes of either blue/purple surround the buttons, depending on whether you've visited before. Would I just set the link, vlink to none?, and just have a CSS snippet that will change the colour of the link as you pass over it? Because I still want other links to be visible.

Thanks in advance,
Josh
__________________
I am your friendly CompuForums moderator . Send me a Private Message if you have an issue with this site or a specific member. I am best at Web Development, though I will try to answer all your questions to the best of my ability.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #6 (permalink)  
Old 06-17-2007, 06:40 PM
Tom Tom is offline
Gigabyte
 
Join Date: 16 Mar 2007
Posts: 409
Tom is a jewel in the roughTom is a jewel in the roughTom is a jewel in the roughTom is a jewel in the rough
Default Border

To get rid of the black/blue borders around images that are hyperlinked, use the following code in your CSS Body:

Code:
img {
border: 0;
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #7 (permalink)  
Old 06-18-2007, 09:52 AM
blueparukia's Avatar
Nuisance Member
 
Join Date: 13 Apr 2007
Location: Australia
Posts: 455
blueparukia has a spectacular aura aboutblueparukia has a spectacular aura about
Default

Oh, yeah. I shoud've mentioned I figured this out. I was adding basic stuff to CSS and decided that way would be easy.

Thanks anyway,
BP
__________________
I am your friendly CompuForums moderator . Send me a Private Message if you have an issue with this site or a specific member. I am best at Web Development, though I will try to answer all your questions to the best of my ability.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
  #8 (permalink)  
Old 06-18-2007, 03:40 PM
Tom Tom is offline
Gigabyte
 
Join Date: 16 Mar 2007
Posts: 409
Tom is a jewel in the roughTom is a jewel in the roughTom is a jewel in the roughTom is a jewel in the rough
Default CSS

Not only is using the style sheet easy, its much more efficient than using the same code, unnecessarily, in your HTML web pages. The cleaner and smaller the HTML, the better. Always keep your HTML to the basics, and allow your style sheet to do most of the work.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 11:59 AM.


Powered by: vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Limited.
Content © Copyright 2005-2008 CompuForums. All Rights Reserved. Some content © Copyright of the respective owners.
Bankruptcy - Debt Consolidation - Credit Card Consolidation - Loans

Content Relevant URLs by vBSEO 3.2.0 RC5