Fitness.com
Advertisement

Go Back   Sports Forum > Community > The Pub

The Pub

Grab a beer, sit back and relax.


» Site Navigation
 > Shop
» Current Poll
Best 5 club teams in history of Football:
Liverpool 1977-1978 - 100.00%
1 Vote
Real Madrid 1956-1960 - 0%
0 Votes
Juventus 1985 - 0%
0 Votes
Milan 1989-1990 - 100.00%
1 Vote
Ajax 1971-1973 - 0%
0 Votes
Santos 1962-1963 - 0%
0 Votes
Torinho 1940's - 100.00%
1 Vote
Ajax 1995 - 0%
0 Votes
Flamengo 1981 - 100.00%
1 Vote
Benfica 1961-1962 - 100.00%
1 Vote
Total Votes: 1
You may not vote on this poll.
» Stats
Members: 103,421
Threads: 84,994
Posts: 1,031,261
Top Poster: Karky (9,546)
Welcome to our newest member, cheapclothingchina
» Fitness Shop
If you register for free, you will be able to post threads, vote on polls and lots more. If you have problems with the registration or logging in, please contact the administrator.

Reply
 
LinkBack Thread Tools Display Modes
Old 01-26-2004, 12:18 PM   Website Post #11
Registered User
 
Join Date: Dec 2003
Posts: 17
Rep Power: 0
Hercules is an unknown quantity at this point
Default Website

Rantin Al I have to say that I prefer the original photographs.

The photgrapher has 20 years of experience and in any case it comes down to one thing personal choice, which I respect.

However, when you asked to "put up" the photographs I was not aware that you will use them for a tutorial.

Now, when you said:

Quote:
The roofs which should be red are a dull brown
is incorrect since the roofs are not red but actually dull brown.

Have you been to Split?

I would apreciate it if you do not use these photographs in the future or on any other site.

Thank you.
Hercules is offline   Reply With Quote
Old 01-26-2004, 12:33 PM   Website Post #12
Joe Blow
 
Join Date: Jul 2003
Posts: 3
Rep Power: 0
lilwicked805 is an unknown quantity at this point
Default Website

Quote:
Originally Posted by ljiljana
nitrobutler Thanks, I do appreciate your time to visit.

I have a question, pls help. On one page (Star field) in photoshop section the hyperlink is underlined and I do not want it underlined. [doh]. I am using Microsoft Frontpage 2000.
\:]
Lily on the page before (Star field) you will see at the top of your code the following:

<style type="text/css">

<!--

A { text-decoration:none }

-->


This is what you need to take the underline off the Star Field page links. Just copy your style code from the previous page to the Star Field page and you will be good to go. Make sure you bring in the ending </style> tag as well.

Hope this helps!!
lilwicked805 is offline   Reply With Quote
Old 01-26-2004, 01:01 PM   Website Post #13
Registered User
 
Join Date: Dec 2003
Posts: 17
Rep Power: 0
Hercules is an unknown quantity at this point
Default Website

lindaw Thank you so much! [righton]
Hercules is offline   Reply With Quote
Old 01-26-2004, 01:05 PM   Website Post #14
Joe Blow
 
Join Date: Jul 2003
Posts: 3
Rep Power: 0
lilwicked805 is an unknown quantity at this point
Default Website

You are most welcome. If you use one external CSS file you can update all your pages from one file. Makes life much easier for sure. You can control the fonts, links, backgrounds, anything from one file. If you want to tackle that sometime just let me know. It is just a matter of creating the main CSS file then adding one small line of code per page.
lilwicked805 is offline   Reply With Quote
Old 01-27-2004, 10:31 AM   Website Post #15
Registered User
 
Join Date: Dec 2003
Posts: 17
Rep Power: 0
Hercules is an unknown quantity at this point
Default Website

lindaw

Quote:
If you want to tackle that sometime just let me know. It is just a matter of creating the main CSS file then adding one small line of code per page.
Yes, I definately would like to do that.

One more question, I would like to have mouse over effect on image thumbnail but in slowmotion! \:]

Thank you very much for all your help.
Example:
Hercules is offline   Reply With Quote
Old 01-27-2004, 08:40 PM   Website Post #16
Joe Blow
 
Join Date: Jul 2003
Posts: 3
Rep Power: 0
lilwicked805 is an unknown quantity at this point
Default Website

The mouseovers can be done with ImageReady Lily. You can set the time in between for the change. You already have Java on your site so I would suggest making external js files for each script and linking that to each page with one line:

<script language="JavaScript" type="text/javascript" src="yourfilename.js"></script>

You would have the above line for each js file or each javascript you have.

The css info you have is very limited. You are only calling the scrollbars and text decoration for the pages. Fonts, background colors, font sizes, etc can be handled in one css and this will cut down on the clutter in your code. The css file needs to be in your root directory with your index file. The tag line to use on all your pages is:

<link rel="stylesheet" href="yourfilename.css" type="text/css">

Now remember to change the href to reflect how far down in the directories you go. If you have files in a folder called photos then the href in the above line is going to be ../yourfilename.css

I have attached the css file. Right now it is named lilycss.txt. You will need to change that to be yourfilename.css. You will remove any code that is:
<style type="text/css">

<!--

A { text-decoration:none }

-->

BODY .........
}
</style>
as this is your css info per page. Replace the above with the tag line I supplied and you are good to go. CSS is only helpful if you really utilize the css file with font info, p tag info, td and table tag info, etc. It makes updating your site a breeze as it is all from one file. I would suggest testing this on one page only to make sure you have the feel for it and don't mess up your site. Also good rule of thumb is make sure you have a copy on your hard drive of your site. I keep a copy by date of every site I update so if something goes crazy then I have a working copy to fall back on with no downtime.

Here is an example of a CSS I created to show you the possibilities:

body {
background-color: #e5e5e5;
font-family: verdana, arial, helvetica, sans-serif;
font-size: 12px;
color: #000000;
}

p {
font-family: verdana, arial, helvetica, sans-serif;
font-size: 12px;
color: #000000;
}

td {
font-family: verdana, arial, helvetica, sans-serif;
font-size: 12px;
color: #000000;
}

What this says is anything in the body or <body> tag will follow the above for formatting. Paragraphs will then follow the <p> tag info and table info or <td> tags will follow the td info.
lilwicked805 is offline   Reply With Quote
Old 01-28-2004, 03:18 AM   Website Post #17
Guest
 
Posts: n/a
Default Website

This seem to be a threa for new web designs, so here goes

Been working on a new design for my site for a couple of days now and his is what I have so far. Would like some comments, good or bad.

I can only post a screen shot as the site is not ready for production quite yet. Soon i hope, before the end of the week.

Tell me what you think

You can't see it in the screen shot but there is some Flash animation on the header.

A first for me as I have never used inline frames before, I am hoping to incorperate some pph as well, but still working on that.

I would like to make it a little interactive if I can, seems to add to the good old hit count
  Reply With Quote
Old 01-30-2004, 02:53 AM   Website Post #18
Guest
 
Posts: n/a
Default Website

Hey its very attractive Rick, I like the colors too.

Joyful
  Reply With Quote
Old 01-30-2004, 08:06 AM   Website Post #19
Registered User
 
Join Date: Dec 2003
Posts: 17
Rep Power: 0
Hercules is an unknown quantity at this point
Default Website

lindaw Thanks a lot! [righton]


Rick It looks good. [righton]


Quote:
as the site is not ready for production quite yet
Let us know when it is done.
Hercules is offline   Reply With Quote
Old 01-30-2004, 11:01 AM   Website Post #20
Joe Blow
 
Join Date: Jul 2003
Posts: 3
Rep Power: 0
lilwicked805 is an unknown quantity at this point
Default Website

You are most welcome Lily!

Rick wonderful site! I really like the colors and the flow of the page looks great!

Taking on PHP eh? You will love it! You can even make your computer do the dishes for you with PHP 8}

Well ok I haven't gotten that far with it but the possibilities are endless with PHP, Pearl, CGI's etc.

:B
lilwicked805 is offline   Reply With Quote
Reply

Go Back   Sports Forum > Community > The Pub

Bookmarks

Thread Tools
Display Modes


Similar threads to Website
Thread Thread Starter Forum Replies Last Post
Do you have a website?
Do you have a website?: Here's a couple more of my websites:Anime...
Dan The Pub 6 11-05-2007 07:57 PM
The Sun Website
The Sun Website: It keeps causing My browser to crash. Only...
Sned The Pub 1 10-13-2007 10:43 AM
New Website
New Website: Hi Please have a look at my new work...
musto General Photoshop Board 7 06-29-2005 06:39 PM
Yet another website...
Yet another website...: Hello! I'd like to post my new website, but...
Avatar-of-Eccentricity General Photoshop Board 4 04-25-2005 09:01 AM
New website
New website: For a DJ www.mattpotts.com/musicmania not...
M-I-5 General Photoshop Board 7 11-12-2004 05:54 AM

More threads of ljiljana
Thread Date Forum Replies Last Post
Some good music ..
Some good music ..: Don't miss this one... Ana Popovic Ana Popovic...
12-19-2005 The Pub 0 12-19-2005 12:21 AM
Movie Poster
Movie Poster: This is my first Movie Poster for Damian Chapa...
04-24-2005 Supersized Runway 12 06-12-2005 03:08 PM
Book Covers
Book Covers: Books with the my cover designs are out: ...
04-24-2005 Supersized Runway 13 06-07-2005 05:22 AM
Extraordinary art work
Extraordinary art work: He is the only one in the world that can do...
04-24-2005 The Pub 3 04-26-2005 07:50 AM
Happy Holidays
Happy Holidays: Wishing you all a very Happy Holiday Season.
12-12-2004 The Pub 9 12-15-2004 03:39 PM

Other threads in forum The Pub
Thread Date Thread Starter Replies Last Post
Wireless lan help (i know there is a thread but i posted and nobody answered)
Wireless lan help (i know there is a thread but i posted and nobody answered): I have a BT wlan at home, with the router...
11-11-2007 Gimp_Basket_Smiles 24 11-12-2007 09:14 PM
Anyone seen 'Death at a funeral' yet? Opinions?
Anyone seen 'Death at a funeral' yet? Opinions?: Went to see this tonight and thought it was one...
11-10-2007 Nixchatabox 1 11-10-2007 12:34 AM
For those who are technically minded.
For those who are technically minded.: Ok, so here's the situation, at the moment, my...
10-16-2007 Big Fat Santa 26 10-17-2007 05:06 PM
anybody ever been to court?
anybody ever been to court?: hi all, would like to say hi to everyone before i...
09-27-2007 barnsey22 62 09-28-2007 03:28 PM
Personal Online Portfolios
Personal Online Portfolios: This is a thread whereyou can post up your own...
12-11-2006 Minch 15 04-21-2007 03:56 PM

» Online Users: 27
0 members and 27 guests
No Members online
Most users ever online was 2,128, 07-21-2008 at 08:27 PM.

All times are GMT +1. The time now is 10:18 PM.


Powered by vBulletin® Version 3.8.3
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0
Fitness.com | Weight Loss | Training & Fitness | BodyBuilding | Chinese | Spanish | French | Germany | Italian | Friend Codes |
You are viewing Website - Page 2.