Search results

  1. horrorshow75

    Please Review .....

    Well they used a sitebuilder to make the site. So my guess is this person isn't too savvy in html, but knows how to minpulate this site builder software to make a site...hope that makes sense. <!--$sitebuilder version="2.6" extra="Java(1.6.0_01)" md5="2a5e93c31c7da863d30afb68a300edec"$-->...
  2. horrorshow75

    Can anyone make the link border disappear?

    external css: img { border: none; } inline css: <a href="link address"><img src="image location" style="border:none" alt="" width="" height="" /></a> IMO external css is the better way to go. You should keep your structure and your styling separate. Makes for cleaner html.
  3. horrorshow75

    Proximity Menu

    Well that particular site was done in flash. Lou might have some more insight for you on that. He seems to be pretty savvy with the flash. There may be a way to do this with JS. I doubt it will function as pretty as that one though. It would probably look more like when you hide your taskbar...
  4. horrorshow75

    noob needs more help

    Start by removing the second body tag. In your html lets just go with <body> for now. Then in your css try: body { background-image: url(matrix.jpeg); color: yellowgreen; } Make sure you end each selector attribute with a semi-colon.
  5. horrorshow75

    Review for website in progress

    I personally would just make them static pages instead of post pages. Save the post pages for a blog or one of the sites I created using wordpress I use the posts page as a news section for upcoming events, site/company updates, etc.
  6. horrorshow75

    noob needs more help

    What about the code in your external stylesheet? octapulse.css The first thing i notice about what you posted so far is that you decalre the body tag twice. <body> <body style="color:yellowgreen"> the style would just go right into the initial body tag.
  7. horrorshow75

    Feedback needed on a Spray paint shop please.

    looks good. I just may buy some fat laces! Take myself back to my 80's breakdancing days. nice site. easy to navigate.
  8. horrorshow75

    noob needs more help

    Can you post your code? I don't see any reason why that wouldn't work.
  9. horrorshow75

    noob needs more help

    the link to your css is incorrect. It should look like this <link href="octpulse.css" type="text/css" rel="stylesheet" /> you were close the ending "/link>" is not needed your css should look like this body {background-image: url(matrix.jpeg); } No quotes and you missed the ending...
  10. horrorshow75

    noob needs more help

    Is this what you're trying to do? html <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link...
  11. horrorshow75

    IE br tag between 2 img tags not working

    I see you got it working. Congrats! :)
  12. horrorshow75

    IE br tag between 2 img tags not working

    Yeah break tags are not the best way to accomplish this. Once I get home from work I will have better resources to look into this. Maybe someone else can offer some help in the mean time. I have about an hour left until I leave work.
  13. horrorshow75

    IE br tag between 2 img tags not working

    this is by far not the best solution but try adding like 3 more break tags after your first image or less for less of a space between images.
  14. horrorshow75

    IE br tag between 2 img tags not working

    One thing I could suggest is to put those images in an unordered list and position them with css using html <ul> <li><img align="left" src="images/biblebeam.jpg" /></li> <li><img align="left" src="images/godadam.jpg" /></li> </ul> css #page_intro ul{ dispaly: block; }...
  15. horrorshow75

    IE br tag between 2 img tags not working

    It does not dispaly correctly and honeslty I have no idea why. It's strange. Your code looks perfectly fine. The <br /> is perfectly legit with the doctype you've chosen. Your site validates with the exception of a few missing alt="" attributes on your images which would not cause this craziness.
  16. horrorshow75

    IE br tag between 2 img tags not working

    by latest I assume you mean IE7? Also which pics are having the issue? I am work and only have access to IE6 but would like to try and help you out as best I can.
  17. horrorshow75

    Which program for my site? My first one!

    Well this is kind of a hard question to answer for someone new to the world of web design. It's important to understand the diffrences between the two things you asked about. Dreamweaver is considered a WYSIWYG (What you see is what you get) program. You would basically use this tool to build a...
  18. horrorshow75

    Need Help with IE vs Firefox - Amateur

    It appears that IE for some reason is sizing your table based on the container instead of the left content div. Not sure why though. I would just set the the width and height as what the image really is instead of a percentage that way it's the same width and height no matter what browser is...
  19. horrorshow75

    Moving page

    I looked at the site with FF 3 and IE 7 both looked perfectly fine to me.
  20. horrorshow75

    Moving page

    Did you fix this issue? Looks fine to me. If not what browser are you using?
Top