Not quite sure. What in the stream are you trying to focus on? You can try margin left trick according to HTML and CSS.
This gives a stream with left, center, and right alignment text that remains centered in the window as it changes:
Shoes.app do
flow do
style(:margin_left => '50%', :left => '-25%')
border blue
para "Some left justified text\n", :align => 'left'
para "Some centred text\n", :align => 'center'
para "some right justified text\n", :align => 'right'
end
end
source
share