Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using images for visual effect / appearance

Status
Not open for further replies.

josel

Programmer
Oct 16, 2001
716
US
Howdy!

I have basic knowledge of html and I am able to write what you would refer to as "simple" pages - nothing fancy - no WOW! effects or appearance.

In other words, my pages are simply the make up of boxes as defined by the use of tables.

I want to start using images which placed together, give the page a more pleasant (or professional) look. I figured the trick is possitioning the images on the right spot. I started with something simple and was not able to get it to work - "to have a two color image show on left side of screen (aka. Navigational Bar)" and obtain a color transission effect.

I created an image with vertical radiant colors and failed to get the effect I am looking for.

The problems I ran into were:
1. The image repeats
2. Space between image (tiled)
3. Could not make it fill screen unless image was huge

An example of simple effect I am looking for can be seen at Their navigation bar is pretty cool as it waves in a solid shape.

Where can I find the "tutorials" and/or "sample" code to accomplish such tricks?

Regards;


Jose Lerebours



KNOWLEDGE: Something you can give away endlessly and gain more of it in the process! - Jose Lerebours
 
Remember, the only way to keep html source code a secret is to not publish it on the net. That basically means that you can just do view source code on a site you like and check how they accomplished it. I wouldn't know where you can find tutorials for these kind of things, but people here will be more than willing to help you get the desired result. First of all, if you look at the background picture on the site you mentioned ( the picture IS huge (1200x609px). If you employ CSS for your design, it doesn't have to be this big. You can set the background in css like this:

background: color url(picture) x-position y-position repeat;

in html code you would use it like this:

<body style="background: #ffffff url(back.gif) top left repeat-y;">

to repeat your background on the y-axis but not on x. Post the url to your site and we will take a look at it and try to help you.
 
Vragabond,

I agree, I should "view source" to understand how they get these things to work ... and I shall ... and I will ...

I will look into using CSS as you mention. As per my URL, I have none for this study or R-N-D; I am experimenting locally within my intranet.

I could, however, open something up for case studies.


Thanks for replying!


Jose Lerebours


KNOWLEDGE: Something you can give away endlessly and gain more of it in the process! - Jose Lerebours
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top