RegisterRegister 
 
Finished my Portfolio Site

 
Post new topic   Reply to topic    Absolute Insight Forum Index -> Computer Software and Gaming

WarrenG Reply with quote
Modder


Joined: 15 Sep 2004
Posts: 399

PostPosted: Sun Apr 24, 2005 5:50 am    Post subject: Finished my Portfolio Site
 
Finally, after a lot of stuffing around, i've finished my website Very Happy

Its my first fully CSS, fully W3C Compliant website i've created and i'm going to strive to complete every website hereafter in the same (coding) way because it just makes things soo much easier.

http://www.mgleeson.com

So, comments, suggestions, criticism, job offers? Razz

Cheers.

PS. Check out who's got themselves a link on the links page Wink
Back to top
Haggs Reply with quote
AI Team Member


Joined: 05 May 2004
Posts: 2723
Location: Minneapolis, Minnesota

PostPosted: Sun Apr 24, 2005 10:34 am    Post subject:
 
Kudos! Nice style, very clean. I'm no expert on digital portfolios, but it looks good to me. PS, thanks for the link ^_^.
Back to top

Impact Reply with quote
Site Admin


Joined: 01 May 2004
Posts: 3257
Location: Pinecrest, FL

PostPosted: Sun Apr 24, 2005 11:21 am    Post subject:
 
I'll offer a bit of a suggestion, and pose a question as well =P

Suggestion: On each of company portfolio pages, make the url under the logo a link to the website =P

Question: CSS1 or CSS2?
Back to top

WarrenG Reply with quote
Modder


Joined: 15 Sep 2004
Posts: 399

PostPosted: Sun Apr 24, 2005 6:29 pm    Post subject:
 
With the links, it calls it in from a Javascript file, not sure how to make it an actual clickable link, any ideas?

I used CSS1. For what the design is, I dont think CSS2 would of helped, nor do I know that much about the changes from CSS1 to CSS2.
Back to top

Haggs Reply with quote
AI Team Member


Joined: 05 May 2004
Posts: 2723
Location: Minneapolis, Minnesota

PostPosted: Sun Apr 24, 2005 8:12 pm    Post subject:
 
I'm curious to hear what ned has to say for suggestions.
Back to top

Impact Reply with quote
Site Admin


Joined: 01 May 2004
Posts: 3257
Location: Pinecrest, FL

PostPosted: Sun Apr 24, 2005 10:01 pm    Post subject:
 
I was just making sure it wasn't CSS2, its aparently much easier to work with, but Microsoft has decided to keep IE8 (I think is the next version) from supporting it.. Most browsers already do, but with a 85%+ marketshare browser not following standards, its hard to adopt. Was just making sure it wasn't using it =P

As for the link. I have done about 50 lines of javascript in my life, so this is _very_ rough. But couldn't you just do:
Code:
<a href="<javascript>pulledlinkfromfile</javascript>"><javascript>pulledlinkfromfile</javascript></a>
Back to top

WarrenG Reply with quote
Modder


Joined: 15 Sep 2004
Posts: 399

PostPosted: Sun Apr 24, 2005 10:01 pm    Post subject:
 
Blah, just the thought of getting a professionals opinion makes me cringe.

*Sits anxiously awaiting neds response if he ever sees this...*
Back to top

WarrenG Reply with quote
Modder


Joined: 15 Sep 2004
Posts: 399

PostPosted: Sun Apr 24, 2005 10:07 pm    Post subject:
 
I'm calling it in through an onclick event...
Code:
<a href="#csi" onclick="document.myimage.src=im1.src;document.getElementById('text').innerHTML = html_01;document.getElementById('link').innerHTML = link_01;return false" class="design">CSI Computer Solutions</a>


Where the first part changes the image wherever there is an image with a name of 'myimage', second part changes text where there is a div with ID of 'text' and last part changes link where there is a div with ID 'link'.

This is the Javascript code i'm using.

Code:
// JavaScript Document
function dload(){
im1=new Image()
im2=new Image()
im3=new Image()

im1.src="../images/csi.gif"
im2.src="../images/kab.gif"
im3.src="../images/sms.gif"

html_01="CSI Computer Solutions provides IT services to small and medium businesses of the Sunshine Coast, Queensland Australia."
html_02="Kitchen Kaboodle is an online catalogue of kitchenware sold by Lisa Bathersby."
html_03="Finance Consulting business, originally established in 1982 and have had a long and successful history. Currently Web Master of the SMS Finance Website."

link_01="http://www.csicomputersolutions.com.au"
link_02="http://www.kitchenkaboodle.com.au"
link_03="http://www.smsfinance.com.au"
}


Still possible to make what you suggested work you rekon?[/code]
Back to top

Impact Reply with quote
Site Admin


Joined: 01 May 2004
Posts: 3257
Location: Pinecrest, FL

PostPosted: Sun Apr 24, 2005 10:40 pm    Post subject:
 
try just changing the text they put in, to:
Code:
From: link_01="http://.............."
To: link_01="<a href=\"http://..............\">http://............</a>"


Remember, I'm pretending I know javascript, and basing this off of other languages =P

Or cant you make a A HREF with an ID, and put info there as well?
Back to top

WarrenG Reply with quote
Modder


Joined: 15 Sep 2004
Posts: 399

PostPosted: Mon Apr 25, 2005 12:41 am    Post subject:
 
Worked a charm, thanks for that Very Happy

Anything else you think needs changing?
Back to top

Impact Reply with quote
Site Admin


Joined: 01 May 2004
Posts: 3257
Location: Pinecrest, FL

PostPosted: Mon Apr 25, 2005 8:28 am    Post subject:
 
Not a problem, looks good to me.
Back to top

kompakt Reply with quote
Innovator


Joined: 17 Jun 2004
Posts: 1475
Location: Eden Prairie, MN

PostPosted: Mon Apr 25, 2005 8:20 pm    Post subject:
 
it tool you guys taht long to think of the A HREF line? wow...i gotta say, i havent ben doing HTML for a while, but A HREF is THE easiest way to do links.
Back to top

Impact Reply with quote
Site Admin


Joined: 01 May 2004
Posts: 3257
Location: Pinecrest, FL

PostPosted: Mon Apr 25, 2005 9:35 pm    Post subject:
 
its in Javascript =P
Back to top

kompakt Reply with quote
Innovator


Joined: 17 Jun 2004
Posts: 1475
Location: Eden Prairie, MN

PostPosted: Mon Apr 25, 2005 10:10 pm    Post subject:
 
yeah, but its the same for both.
Back to top

WarrenG Reply with quote
Modder


Joined: 15 Sep 2004
Posts: 399

PostPosted: Tue Apr 26, 2005 5:56 am    Post subject:
 
Not really, the syntax is different.

I tried what Impact suggested awhile ago and it didn't work as the syntax wasn't correct.
Back to top

Haggs Reply with quote
AI Team Member


Joined: 05 May 2004
Posts: 2723
Location: Minneapolis, Minnesota

PostPosted: Tue Apr 26, 2005 10:15 am    Post subject:
 
Silly syntax. Why can't they all use the same syntax for the same things?
Back to top
Post new topic   Reply to topic    Absolute Insight Forum Index -> Computer Software and Gaming
Page 1 of 1

Choose Display Order
Display posts from previous:   
User Permissions

 
Jump to:  


Skin Created by: Sigma12
Powered by phpBB © 2001, 2002 phpBB Group