Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Reply
Old 06-28-2005, 04:28 PM Font size problem!!!
Novice Talker

Posts: 6
Trades: 0
Ok i use dreamweaver as my editing program and i chose which size i think looks best. But the problem is that the font that appears on my webpage in the browser window is way bigger than the font size in dreamweaver. How can i get my font smaller!!??


Also i would like to know how to overlap text over images like this web site does.

www.killswitchengage.com

As you can see, the second page has text that overlaps the graphic on thhe left....How do you do that!!!???
david7287 is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 06-28-2005, 04:33 PM
The_Anomaly's Avatar
Extreme Talker

Posts: 216
Location: Boston, Ma
Trades: 0
Its probably the text size in your browser. In the browser go to view -> text size...then adjust accordingly. But if your using a default text size and it seems to big with your browser you have to think people viewing your page are using the default size. You should probably adjust the text in dreamweaver to something smaller.

To overlap pictures and text you need to use CSS and absolute positioning. I'm not sure if this is the only way to do it but it works.
The_Anomaly is offline
Reply With Quote
View Public Profile
 
Old 06-29-2005, 01:55 AM
Novice Talker

Posts: 6
Trades: 0
alright thanks that helps a lot but what exactly do i do to use the absolut positioning?
david7287 is offline
Reply With Quote
View Public Profile
 
Old 06-29-2005, 11:10 AM
fancymoustache's Avatar
Ultra Talker

Posts: 316
Location: Michigan
Trades: 0
Since you're using Dreamweaver, you'll have to use some html for this, otherwise I don't know what to tell you. Here is an example of absolute positioning:

Code:
<!--Goes in style.css-->
#block {
	position:absolute;
	top:50px;
	left:50px;
	width:100px;
	height:100px;
	background-color:#000000;
}

#photo {
	position:absolute;
	top:200px;
	left:50px;
	width:100px;
	height:100px;
}

#text1 {
	position:absolute;
	top:75px;
	left:75px;
	color:#00FF00;
}

#text2 {
	position:absolute;
	top:225px;
	left:75px;
	color:#00FF00;
}
HTML Code:
<!--Goes in example.html-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
 <head>
  <meta http-equiv="imagetoolbar" content="no">
  <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  <link rel="stylesheet" href="style.css" TYPE="text/css">
  <title>Example of absolute positioning</title>
 </head>
 <body>
  <!--Block Example-->
  <div id="block"></div>
  <div id="text1">Example</div>
  <!--Photo Example-->
  <div id="photo"><img src="whatever.gif" border="0" height="100" width="100" /></div>
  <div id="text2">Example</div>
 </body>
</html>
A good link to learn about this kind of stuff can be found at http://webmonkey.wired.com/webmonkey...tutorial1.html or for positioning, specifically, http://webmonkey.wired.com/webmonkey/98/15/index4a.html

Hope that helps you,
Micah
fancymoustache is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Font size problem!!!
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.33620 seconds with 12 queries