Resizing Text on Browser Resize

Redbear

New Member
Firstly, excuse my absolute lack of knowledge, I'm trying to make a website for the first time and have very little training..I'm trying to get my text within a div to resize vertically when the browser window is resized. So far I've used purely HTML and CSS (would be willing to use something else to do this, however might need some advice as to how to implement it!).From what I've read I thought setting the width and height tags using a percentage would work, but it is only working for horizontal resizing. The image within the div resizes, however the text links dont.I wanted the position of the div to be fixed, so it doesn't scroll with the rest of the page content. Unsure whether that stops me being able to resize thoughHere is my CSS for the div:\[code\]#logo {width:10%;height:auto;position:fixed;top:1%;left:1%;text-align:left;float:left;font-family:Dekar, arial, serif;font-size:1.5em;font-weight:bold;}\[/code\]Any help appreciated. Again sorry for my lack of knowledge
 
Back
Top