Click to See Complete Forum and Search --> : A Helping hand for a newcomer...


~ * Absar * ~
11-06-2003, 02:27 AM
Hey Guys,

I'm new here and I just had a few questions that I was wondering if someone could pitch in and give a helping hand.

I am looking for standard, ready-to-use web page outline. All that is needed is for me to do is download them and personalize them. At the same time, I am looking for something professional, it's for a company.

I don't know if something like that already exists. Just let me know. Thanks.

- A
:)

Khalid Ali
11-06-2003, 06:57 AM
do a google search for
"HTML Templates"

and I think you will be overwhelmed by the results..

;)

pyro
11-06-2003, 06:57 AM
Try doing a google search for web templates. I personally would not recommend using them (at least not as is) as I highly doubt they will be using valid code. If you use them simply for the design, you should be able to re-write them without much difficulty.

~ * Absar * ~
11-11-2003, 04:17 PM
Hey Guys ...

I really appreciate your help. I made a search and found something suitable, Alhamdullilah.

I was wondering how can I make the menu and the side banners all stable and available in each page by default? How can I do that?

Thanks a whole lot.

-Peace

Aronya1
11-12-2003, 01:40 PM
Create a page with your banners & nav menu, etc., but with the main content area empty. Save it as template.htm (or similar). Then use that to start all pages that come after. Just remember to save the new pages with a different name.

~ * Absar * ~
11-20-2003, 10:43 AM
Aronya1: Thanks for your reply. I was anticipating more replies than that ...

Anyway, I did as you mentioned exactly but in each and every time I am required to redefine the links for the Banners and menus because they get messed up.

Another thing is that I only want the menu to load once, not every time with each page which will save some loading time.

I have seen many websites that are like that, when you click the menu ... nothing changes, everything is the same except for the body ...

Mainly that is what I was talking about.

Anyway, I'll try to do what you mentioned again and I would really appreciate a helping hand from the rest.

~ * A * ~

TheBearMay
11-20-2003, 11:03 AM
Sounds like you're talking about a site that uses Frames. You put the menu in one frame and then based on the selection change the content of the other.

~ * Absar * ~
11-20-2003, 12:55 PM
Thanks for the quick reply ... :)

I think so ... if this is how they do it ... then that is what I am talking about ...

The question still remains though ... how? :rolleyes:

TheBearMay
11-20-2003, 01:07 PM
You use a Frameset similiar to:


<html>

<frameset cols="14%,1*">
<frame name="MenuFrame" src="Menu.htm">
<frame name="ContentFrame" src="Content1.htm">
<noframes>
<body>
<p>This page uses frames, but your browser doesn't support them.</p>
</body>
</noframes>
</frameset>

</html>

Aronya1
11-20-2003, 01:26 PM
Frames can be a nightmare to work with when you are just starting out. I'd recommend writing standard web pages, but pay attention to graphics file sizes, etc. Optimize for download speed, and the fact that the whole page reloads won't matter much to the user. You'll find a large number of strong CSS advocates in these forums. Learn to use CSS for page layout & you won't have to worry about frames.

Just my 2cts.

~ * Absar * ~
11-20-2003, 08:21 PM
Thank you (TheBearMay) for your help. :)

Umm, Aronya1 ... couple of questions:

1) What does CSS stand for?
2) How am I going to learn it?

... and thanks for your help :)

pyro
11-20-2003, 08:26 PM
CSS stands for Cascading Style Sheets, and it is the preferred way to style one's documents (as apposed to the presentational HTML hacks of the '90s).

You should be able to learn the basics from http://www.w3schools.com/css/. After that, you might want to move on to reading articles at http://www.alistapart.com/ and the specs at http://www.w3.org/TR/CSS21/.

~ * Absar * ~
11-21-2003, 01:15 AM
thanks a lot pyro. :)

I'll get to that after the finals then, insha'Allah. :rolleyes:

Appreciate it though. ;)

If anyone has more info, feel free to help the newcomer :)