Quote:
Originally Posted by kovidgoyal
This has nothing to do with calibre, you have to use the appropriate css to get the effect you want. Set the display to inline in the CSS for the h6 tags.
|
If Kovid's comment isn't clear, look here:
http://www.w3schools.com/cssref/pr_class_display.asp
There is property called "display" and you need to give that property the value "inline" in your CSS for your h6 tag. That just means that the h6 tag in your table will generate an inline box with no line break before or after the element. It can be confusing looking up "inline" as inline CSS/styles are not the same thing as giving the CSS display property the value of "inline." (It sounded confusing just writing it.)