-1

EDIT: I have clarified more. I appreciate the first comment. I have previously read the faqs.

I have default MVC code that puts a <dl><dt><dd>, and instead of a dt and dd, I'm looking to show the image on the full row and not just on the "right column" or side of the list.

I'm not as familiar with dt/dd as compared to tr/td, so there's my confusion. If I add the img tag, it shows the image after Type and then the value of Type is pushed to another line - looks bad, and that's the problem at hand.

Example - Here ya go: https://dotnetfiddle.net/J8tKrD (look at the right panes only - other is default from their site)

I am not putting the image in a dt or dd, as then it would just be on the left or right. I understand that it's not valid markup either, hence the point of the post, hah.

  • 1
    I find it hard to visualise what you want. Can you post some more HTML? Preferably including the image you're talking about. And there is no such thing as `tr colspan=2` – Mr Lister Sep 22 '15 at 15:36
  • Please, read **before** ask: http://stackoverflow.com/help/how-to-ask . This post is a good candidate to be closed – Marcos Pérez Gude Sep 22 '15 at 15:36
  • @MarcosPérezGude This still is a seasoned user, with 21 questions and a silver badge. – Mr Lister Sep 22 '15 at 15:38
  • @MrLister it doesn't matter, if he don't know how to ask, he must to read slowly. Some people participate in stackoverflow without reading it NEVER. This is not a good asked question. – Marcos Pérez Gude Sep 22 '15 at 15:44
  • In spanish language, "me la suda que tenga medallitas, aprende a leer" – Marcos Pérez Gude Sep 22 '15 at 15:45
  • 1
  • Put your code inside it to clarify more – Ali Mehdi Sep 22 '15 at 19:41
  • hi, java I don't use, but in general using `
    `, `
    ` and `
    ` is much the same as `
      ` with `
    • ` (but an extra bit under it. Basically, `
      ` doesn't contain data, it just marks the start/end of the data definitons. `
      ` always expects a line to itself (so does `
      `) but you can fix them to force them online the same line as `display:inline` for instance. The equivalent to `` spanning 2 columns is just `
      ` (the `
      ` can be skipped anytime you like, eg for headings. Hope that helps
– Mousey Sep 27 '15 at 21:56