Jump to content

vchris

Members
  • Posts

    1,529
  • Joined

  • Last visited

Everything posted by vchris

  1. I know that and the PDF file is on the network where everyone should have access. Should it really be HTTP?
  2. Hey guys, It's been a while since I posted. Anyway, I got an issue that I don't really understand here.I have a PDF file that users download from the intranet site. I used file://... and it opens for me. Online it also works for me. But it seems like other users cannot download it online. They say to change to http://.... instead. So I changed to http:// and I can't open it on the dev and live server.Got any idea what's wrong? Why can I open with file:// and others can't?FYI: the PDF file contains spaces and . to separate date digits in the name.
  3. vchris

    CSS Tranparency

    I've never really worked with transparency... I'm playing with it right now and I see that the text inside a div also gets affected by the transparency. How do I have text 100% opacity and div background to 20%???Edit: NVM found it on that link.
  4. You're right you cannot use the margin attribute on <td>. I am unsure of the reason.
  5. I would apply the list-style-images... on the LIs instead of UL. Make sure the path to the images is the same once you bring it on another system.
  6. Moi de la région de l'outaouais, je travail a ottawa.Attend que quelqu'un te répondre ou cherche sur google pour "csv in asp".
  7. Hey I'm french too! Tu viens du Québec?Sorry I don't have the answer your looking for. I've done this before but forgot about it...
  8. I notice you didn't set any width for your random_quote div. It should have a width of your page - your logo on the left. and then the text should stay within the boundaries. Make sure to leave your margin-left there so it's placed on the right of your logo.
  9. vchris

    and now for CSS

    Yes it is! I've done it on my old sites. Depends to what extent you want to convert your page to css. You can remove your layout tables and place divs instead. No font element should be used anywhere. I suggest you get to know all the properties of css so you know what can be converted. This is a good exercice to understand css.
  10. vchris

    Guest Page

    If you want it inserted into your guestbook automatically you'll need to know a server-side scripting language (asp, php, coldfusion...) and a database that contains your guestbook. To email the content of the form to yourself, insert your email in the action attribute of your form. <form name="form1" method="post" action="myemailisfreakinglongbutilikeit@here.com
  11. Actually the <center> element is deprecated and should not be used. I would do what Little Goat said: body {text-align: center;margin: 0 auto;} margin:0 auto; will center in all the other browser except IE so that's why you need text-align: center;
  12. We must seek them out and destroy them!!!
  13. Ok so you have a form that you want to submit the info to your email. In the action attribute of your form add this: <form name="form1" method="post" action="mailto:myemail@domain.com">... That's it!
  14. Yes if you have _blank in your target attribute it will open the link in a new window. You can remove the target attribute completly, by default it will open in the same window. You can set the target to _self also, this will open the link in the current window.
  15. I have attached an image of a site I'm working on.Site Name: CodingTutsSite Description: Web tutorials site, will include forum, tutorials on many web programming languages, references...Site Owner/Developer: meSite Address: none yet but should be http://www.codingtuts.comExtra Comments: Created with CSS layout, only table on the site is used for displaying data clearly. Should use PHP and MySQL in order to store forum and all user comments, languages tags...What do you think about this one guys?I think it's pretty hot Maybe it's missing something in the banner and content background?Removed pic attachment.
  16. vchris

    first position

    Dial-up users have far less bandwidth than Cable or DSL users. This could mean using smaller or less images for the site and no flash animations.Images take the most bandwidth unless your streaming any kind of big file (video, audio, online game, flash...) on a dial connection, forget it
  17. vchris

    Image link border

    ah I see! Thanks for the info Jonas.
  18. vchris

    Image link border

    ah! I never read that or heard of that before. Thanks for the info SmokingMan ! So now you can just add this in your stylesheet: img { border-style: none; } And all images will have the border removed.
  19. This should be adding a pop-up that says NAME because of your title attribute. Depending on the browser you use, they don't always show it. I know with Firefox it doesn't always show it but if I right click the image, I can see the title. If it's IE then it should show on mouse over.About the image being linked, you'll want to add the <a> element on both sides of your image. As shown below: <a href="pagename.html"><img src="photo.jpg" title="NAME" border="0"></a> Make sure to add border="0" in your image element or else you'll have an ugly border around it
  20. vchris

    Times New Roman

    Make sure to have Times New Roman between quotes. It is required for multiple word font names. font-family: 'Times new roman';
  21. vchris

    Image link border

    Jonas, couldn't you just use <img src="image.jpg" border="0">?Is the border attribute deprecated? I don't know remember seeing that...
  22. vchris

    Red crosses

    Everything seems to work well. I've tested all your bullet links. It must be somekind of problem with the server I think...
  23. vchris

    XMP Tag

    boen_robot is right. I have done that many times and if you want to display <h1>header 1</h1>, then you'll have to write this in your HTML source: <h1>header 1</h1> < = <> = >That's it!
  24. Once the submit button is clicked that's when you PHP will come in play. Basically you'll have an if statement that will detect when the submit button is clicked. Once clicked it will get the variables from the form with $_POST[] and then send the email.
  25. First one is better because it's easier to read the text.
×
×
  • Create New...