Recent content by Nomdae Plume

  1. N

    html picture not centering?

    Hi Jack! This could be a number of things. I'll list the most common: [1] An HTML tag isn't closed correctly. Check the tags after the first image and before the second one...including the IMG tag itself. This is what typically causes the issue. [2] There is CSS code or some other command...
  2. N

    How do you make a border OF text in HTML?

    <div style="border: 1px solid black;"> Some text with a border </div> Good Luck!
  3. N

    HTML border for table not working?

    Simple fix: OLD CODE: border: dotted; NEW CODE: border: 1px dotted #FFFF00; Good Luck!
Back
Top