Search results

  1. J

    How can i get a scroll box that displays HTML code inside?

    <textarea rows="5" cols="10">TEXT HERE</textarea> resize to however you want.
  2. J

    In css or html coding, how would i insert multiple pictures and text over a

    A background will always be there no matter what. You just build your website on top of the background. The html element <img/> is what you use to place an image on the page. Text can be added in a number of different ways. You really should learn HTML and CSS so you can understand the basics of...
  3. J

    CSS Background Image?

    <table id="dispaly">stuff in your table</table>
  4. J

    HTML Codes On Notepad. PLEASE ANSWER!!?

    I don't think that you can manipulate the code on that site. It doesn't appear to be a myspace or webs.com type of site where you have your own page. You would need access to the server and permission to change the code. But to answer your second question: background= body {background-color...
  5. J

    php programming language.?

    anytime that I am learning a new language, I just make a simple program, and then as I continue to learn, I keep adding onto that program with the new stuff that I learned. It sticks in my mind pretty well after I implement all of what I have learned.
  6. J

    about html/css, centering div?

    try using #container { width:800px; float:left; background-color:blue; margin-left: auto; margin-right: auto; }
  7. J

    Tables in HTML/Dreamweaver?

    Place all buttons in the same table cell, or place the big .jpg in a different table. The entire table will streach to accomodate largest cell. you could even add extra table rows to the first colmn in order to compensate, but that would be the unorderly thing to do.
  8. J

    I need a simple HTML code for an ebay store?

    simple html? not even close. you will need php and mysql just to get your selling capability going. While you are at it, learn more about html and css to make the basics. Javascript would be very helpful in making your site "creative." You will not find someone to do this without some sort of...
  9. J

    Why are military bases like the Pentagon and Fort Pulaski shaped like a Pentagon?

    My ever smart math teacher ask me that question when we were on a school trip to Savannah, and one of the places we went to was Fort Pulaski. And that made me think a lot, and I gave up.
  10. J

    HTML question about size changing?

    <span style="font-size: 72px;">text</span> use css. you NEED to do this considering how html elements and properties are being deprecated and replaced by css in newer html versions.
  11. J

    How to set a Dreamweaver background image?

    body {background-color:transparent; background-image:url(images/Borders.jpg); background-attachment:fixed; background-position:center; background-repeat:no-repeat; background-size: 100% 100%;} or div { background-image: url(plasma.png)...
  12. J

    How do I reuse the same HTML efficiently?

    Use CSS. That is what it was made for.
  13. J

    is it posible to do a hover using html not css?

    no. use css. why wouldn't you want to use css in the first place? <head> <style type="text/css"> a:hover { color: orange; text-decoration: none; } </style> </head> you could also use a class for this: <style type="text/css"> a.name_here:hover { color: orange; text-decoration: none; } </style>...
  14. J

    is it posible to do a hover using html not css?

    no. use css. why wouldn't you want to use css in the first place? <head> <style type="text/css"> a:hover { color: orange; text-decoration: none; } </style> </head> you could also use a class for this: <style type="text/css"> a.name_here:hover { color: orange; text-decoration: none; } </style>...
  15. J

    How To Align All HTML Content To The Right?

    <head> <style type="text/css"> body { text-align: right; } </style> <head>
  16. J

    HTML Tables problem.. My table automatically goes horizontally! How do I

    decrease table width and increase table height. edit: and yes, <tr></tr>
  17. J

    HTML Tables problem.. My table automatically goes horizontally! How do I make it go

    decrease table width and increase table height. edit: and yes, <tr></tr>
  18. J

    Samsung SPH-m540 (Rant) Wallpaper Maker?

    ok so i need a PC program which can make wallpaper for this phone... if you have one heard of one or could make one AWESOME!!!! screen pixel size (WXH) Full Screen 176 × 220 Canvas 176 × 181 Screen Size 37 Kpix (38720 pix) Canvas Size 31 Kpix (31856 pix) 75 Kb (77440 bytes) 62 Kb (63712...
  19. J

    Learn Dreamweaver or Learn HTML?

    Using dreamweaver is a time saving utility rather than typing all the code yourself. This can be good for very large, very complicated sites. I would suggest learning HTML/CSS first and then possibly using dreamweaver if you deem it necessary. Like they say, "Give a man a fish, and he will eat...
Back
Top