your left figure is ‘floated’ (in CSS) to the left. your right figure is shorter, and ‘floated’ to the right. the web browser thinks you want to fit your text in as soon as possible after both images, which according to its algorithm is just after the first image, under the second.
annegentle joined the channel
you might try aligning *both* images to the left. the order ought to be preserved iirc.
that adds some HTML that tells the browser to put everything that follows below any floats
sdough
Web dev is frustrating.
stevejohnson
absolutely true
vishkavi
bingo
that did it
stevejohnson
steve johnson, genius programmer
vishkavi
AWESOME!! Indeed!
let me, with your permissions, add you both to my favourites list
stevejohnson
I don’t even know what that is but ok
sdough
Favorites list in what?
vishkavi
i mean to add you as buddies
sdough
To some formal list or are you saying you'll remember us?
stevejohnson
irc doesn’t have a buddy list :-)
vishkavi
but the client has!! ;)
stevejohnson
just come to this channel when you need help
sdough
That's why I was confused.
vishkavi
anyways, you guys are great! Solved my problem.. Thanks a lot and wish you both a great day :) :)
ciao ciao
vishkavi has left the channel
ballingt has quit
nickoe has quit
Hasimir has quit
annegentle has quit
ballingt joined the channel
nickoe joined the channel
Hasimir joined the channel
annegentle joined the channel
Hasimir has quit
j12t has quit
brechtm joined the channel
brechtm
hi
sdough
hello
brechtm
What's the consensus on target IDs in Sphinx; should they be unique across all files, or just within a single file?
When building a project, Sphinx will complain about non-globally-unique target IDs
sdough
That sounds like they should be unique across all files then.
brechtm
But I can image it can be useful to use the same IDs in several source files. chapter1#conclusion and chapter2#conclusion for example
I see the LaTeX builder can handle duplicate IDs, as long as they are in different source files
sdough
Do you need to use a builder that doesn't support it?
brechtm
The single-HTML builder doesn't
I copied the single-HTML behavior in my builder, but I'm wondering if I should change that
The docs do mention "To support cross-referencing to arbitrary locations in any document, the standard reST labels are used. For this to work label names must be unique throughout the entire documentation."