Page 1 of 2

html experts.... I need some help

Posted: Sat Jun 02, 2007 10:26 pm
by Leonardo
It seems that I always need some help :lol:

anyway, I want to get ridoff the blue border on my link-images!!

Image

could someone take a look and give me a hand... that blue is too distracting :?

http://www.tereschubert.com/vr/index.html

Posted: Sat Jun 02, 2007 10:30 pm
by jomaga
Border=0 into html tag?

like this one
Code: Select all
<a href="http://www.yoursite.com"><img border="0" align="middle" src="images/image.jpg" alt="click here" /></a>

Posted: Sat Jun 02, 2007 11:09 pm
by Leonardo
you're a genius :D

Posted: Sat Jun 02, 2007 11:14 pm
by jomaga
Much better now :wink:

Posted: Sat Jun 02, 2007 11:15 pm
by Robur
hey, nice images Leonardo :-)

What kit are you using to make 'em ?

Posted: Sat Jun 02, 2007 11:27 pm
by Leonardo
Robur... give me a second

I still have a few more things to aks :lol:

This is what I would like to have (I did it in photoshop)
Image

but I'm having a hrad time dominating the tables :cry: (if you download my html, you'll see what mess I did :lol: )

could some one give me hand??

thanks!

leo

Posted: Sat Jun 02, 2007 11:35 pm
by Leonardo
Robur wrote:hey, nice images Leonardo :-)

What kit are you using to make 'em ?
Robur... my qtvr setup started here...
http://www.maxwellrender.com/forum/view ... light=qtvr


there are many options, from very cheap to expensive. Because my mom already have good slr digital cameras we went the expensive way and bought a $620 lense.

you can pm me if you need any specific info
leo

Posted: Sun Jun 03, 2007 12:34 am
by Leonardo
hey I almost got it!!!!

no need for help... I did it!

NOW, another question, does anyone know how do people make this websites where everytime you refresh the pg you get a differnt pic?? :D

Posted: Sun Jun 03, 2007 1:16 am
by iker

Re: html experts.... I need some help

Posted: Sun Jun 03, 2007 2:11 am
by ivox3
Leonardo wrote:It seems that I always need some help :lol:
True. :lol: ....squeaky wheel gets the oil ??? :lol:

Posted: Sun Jun 03, 2007 3:36 am
by ricardo
I downloaded this but didn't have time to install yet, seems promissing:

http://www.medialab.com/sitegrinder/

BTW I think I saw it here for the first time.

And Leonardo, the pictures are great!

I did this kind of thing some years back and it was a pain! A bulky tripod head and had to write code on a mac to stitch things togheter. Out of scanned 35mm prints. There was a console window in MacOs 7.5... :( One week to put the things right. Would never think of adding PEOPLE to it. Would be insane.

Ricardo

Posted: Sun Jun 03, 2007 4:10 am
by Leonardo
ricardo wrote:I downloaded this but didn't have time to install yet, seems promissing:

http://www.medialab.com/sitegrinder/

BTW I think I saw it here for the first time.

And Leonardo, the pictures are great!

I did this kind of thing some years back and it was a pain! A bulky tripod head and had to write code on a mac to stitch things togheter. Out of scanned 35mm prints. There was a console window in MacOs 7.5... :( One week to put the things right. Would never think of adding PEOPLE to it. Would be insane.

Ricardo
Ricardo, there programs out there that makes it easier now (not to mention we don't need to scan the pics anymore)

With all and that, it's a lot harder to take picture of people moving... There is a lot more photoshoping that needs to be done.

Posted: Sun Jun 03, 2007 12:07 pm
by -Adrian
Leo, instead of assigning the same parameters to each element, you can define it once in the CSS at the top of your page.

Your Default:
Code: Select all
body{
   color: #333;
   font: 13px 'Lucida Grande', Verdana, sans-serif;
   background-image: url(images/back_fl.gif);
   background-color: #FFFFFF;
   background-repeat: repeat;
}

.style1 {
   background-color: #CCCCCC; font-family: Arial, Helvetica, sans-serif;
}

a:link {
   color: #000000;
}

a:visited {
   color: #FFFFFF;
}

.style3 {
   color: #FFFFFF
}
Changes:
Code: Select all
body {
   color: #333;
   font: 1em 'Lucida Grande', Verdana, sans-serif;
   background: white url(images/back_fl.gif) repeat;
}

p {
   text-align: justify;
}

a {
   border: none;
}

table {
   border: none;
   background-color: black;
}

img {
   border: none;
}

/* formerly .style1 */
.grey_box {
   font-family: Arial, Helvetica, sans-serif;
   background-color: #cccccc; 
}

/* formerly .style3 */
.white {
   color: white;
}
Now you could drop the majority of (repetitive) attributes within the html.

One thing i noticed is that the Flash and Quicktime texts look kinda jagged, any idea why?

Posted: Sun Jun 03, 2007 12:24 pm
by -Adrian
but I'm having a hrad time dominating the tables
a list apart
google: tableless layouts

Posted: Sun Jun 03, 2007 3:36 pm
by Leonardo
-Adrian wrote: One thing i noticed is that the Flash and Quicktime texts look kinda jagged, any idea why?
yes... they are .gif... I wanted to place the icon and then write the rest, BUT the text and the icon didn't match, the text was too low, so I made it all a .giv :oops: