I think the problem might be that you are applying print design techniques to web design. That's not a good thing. You can play with pushing down your images to try to bring them closer to the relevant text as much as you like. For smartphones, the columns are reflowed linearly so all you need to do is to undo he margin or top positions in your smartphone media query.
It is strange because if I have two images I can position them where ever I want and they come out nicely in both desktop and smartphone view but if I eliminate one image then all hell breaks loose. I hate two find out what happens if I have 3 or 4 images(-:
Sinclair suggested the following changes:
__________
In the p7affinity-1_02 stylesheet, find this....
/*1 Column for Narrow Browser Windows and Smartphones in both orientations*/
@media only screen and (min-width: 0px) and (max-width: 700px) {
body {
padding-bottom: 0px;
}
And replace it with...
/*1 Column for Narrow Browser Windows and Smartphones in both orientations*/
@media only screen and (min-width: 0px) and (max-width: 700px) {
body {
padding-bottom: 0px;
}
#graphix2, #graphix3, #graphix4, #graphix5 #graphix6 {
margin-top: 20px !important;
}
________________
It helped with making both images appear completely and also shrink the large gap between them in desktop view to a small gap in smartphone view
The problem is that if I make the change in p7affinity-1_02 then it will apply to all the pages. Which will really mess things up as some pages will ha no images some 1 and others 2 or more and it seems that they will all require separate rules depending on the number of images. No images is no problem but 1 and 2 definitely are I have not 3 or more yet.
Could I instead move those media queries into the the head of the template so that they could be adjusted depending on how many images there are on the page? Or, could I leave them in p7affinity-1_02 and just add separate media queries to the head of the pages affected and assume that they will supersede the rules in the linked style sheet.
It is 2:30 AM where I am so time to go to bed. Look forward to your sage advice.