Hi Roland,
On 28/03/17 17:11,
rol...@logikalsolutions.com wrote:
> I am looking for a clean way to place an image on the left and text on
> the right without having to use a table or drop into code.
I always work with the Style Properties Panel open and docked within the
BlueGriffon Window. To achieve what you want, I would...
Having inserted the image, click on it (or more reliably, its <img> tag
on the status bar at the bottom of the window)
Then, turning to the Style Properties Panel, select the option "Apply
styles to: the element through inline styles" and open the "Postion and
Layout" segment and select the "Float Left" icon.
There are a variety of approaches you could take which might make it
appear simpler to a novice BG user.
As the Style Properties Panel can appear intimidating to a non-coder,
you might be able to set up a stylesheet for the page to be edited with
a set of classes for images of various kinds, e.g. "panorama" for
extremely wide aspect-ratio images images intended to fit across the
whole page with styling such as:
img.panorama {
width: 100%;
display: block;
}
img.smallleft {
width: 25%;
float: left;
}
Class setting is easily done from the toolbar drop-down list - as you
might expect given that in-line styling produces so many issues for site
maintenance. Class-setting also has the advantage that you can see that
it has been applied correctly as the status line tag indicates that the
class has been applied.
Of course, you'll want to avoid tables, as in web design they are
reserved for tabular data and should never be used as a page layout
function.
--
Greg Chapman
http://www.gregtutor.co.uk
Still helping users of KompoZer but using BlueGriffon