View Full Version : Letter Spacing?
Amystika 12-14-2005, 07:10 AM This is my code:
<!--
body,tr,td, h6, p, li
{font-size: 10px;
font-family: arial;
color:#000000;
letter-spacing: 1pt;
-->
Now, whenever I try to align an image to make the text go around it, the image won't show up, however when I take the letter spacing out it's fine. Is there anyway I can do the image alignment without taking out my letter spacing?
lefty 12-14-2005, 11:47 AM That's bizarre. They shouldn't have anything to do with each other... mind posting a link to your page, with the image code on it?
Monkey Bizzle 12-14-2005, 05:41 PM I don't know if it has anything to do with your problem, but you forgot an ending } in your code. Should be:
body,tr,td, h6, p, li
{font-size: 10px;
font-family: arial;
color: #000000;
letter-spacing: 1pt;}
Amystika 12-14-2005, 07:56 PM I don't know if it has anything to do with your problem, but you forgot an ending } in your code. Should be:
body,tr,td, h6, p, li
{font-size: 10px;
font-family: arial;
color: #000000;
letter-spacing: 1pt;}
hmm maybe that's it lol. my site is www.east146fans.net
Amystika 12-14-2005, 08:19 PM okay.. i fixed that and it's still not working. bleh
Monkey Bizzle 12-14-2005, 08:43 PM Hmm, you have lots of errors in your coding but I'll only go with the stylesheet... First of all, you have CSS in your actual page and then you have a stylesheet with pretty much the same styles... If you are going to use an external stylesheet, don't use internal CSS, unless they are different. In your external stylesheet, take out all of the tags except for the CSS. So you should not have any <html>, <head>, <style>, etc tags in there.
Amystika 12-14-2005, 09:42 PM Hmm, you have lots of errors in your coding but I'll only go with the stylesheet... First of all, you have CSS in your actual page and then you have a stylesheet with pretty much the same styles... If you are going to use an external stylesheet, don't use internal CSS, unless they are different. In your external stylesheet, take out all of the tags except for the CSS. So you should not have any <html>, <head>, <style>, etc tags in there.
oh the only page i have the internal css on is the main one because it's iframes. there's nothing on that page except the layout
|