Good Afternoon, Jennifer, As I usually do, I've made a local copy of your page and modified it as I came across the problems. The result is essentially a "patch" without going back to the root cause of any problem. The page I have worked on is at:- http://countjustonce.com/test/jen-mck.html ... I suggest you download and save it, and check through it for the changes I have made. If you look at the top of the page, you will note that it is now HTML5 and /> has been replaced with > throughout. To make it validate as HTML5, there are some minor issues to fix, e.g. the image sizes should be declared either as inline styles - style="width:300px;height:150px" or better still, add a class to each of those images and place the styles in the CSS. Happy to help, and just ask if you run into other problems. Regards Barry ------------------------ On 22/11/2015 06:15, Jennifer McKemie via wrote: > Good Morning, Barry! > > The centering of that image in the center has frustrated me. I added > the > details you sent, but it pushes it back to the left. I have fussed > with > this one so much. I don't have any details about the image size and > such, > you notice? When I add them, it pushes it to the left. I'm not > understanding this one AT ALL. > > Thank you for the explanations and finishing touch for the search > box. Not > gonna lie, that one thrills be to bits. :) > > Jen >
Jennifer, I've just had a look at the latest mods you have made to the page, and have found the problem here:- <div class="col1" "text-align:center"> ... which will be fixed if you alter the above to - <div class="col1" style="text-align:center"> Barry