How do I vertically center an image with a text block?

zgall1

I have a text block and image that you can see here (the site is not online yet).

I would like to centre the image on the right at the vertical middle of the text block.

The code I am currently using is below. As you will see, I've tried using display-inline:block; vertical-align:middle on both of the divs but it doesn't seem to have the intended effect.

    <div class="x-column vc one-half" style="font-size:128%; display-inline:block; vertical-align:middle;">
    <p class="p1">The electronics we pick up are transported to our state-of-the-art recycling facility in Brampton,Ontario. As the trucks are unloaded, each company’s material is independently weighed, allowing us to issue a customized Certificate of Recycling for diverted material. Electronics are then sorted into various grades that are either mechanically shredded or manually dismantled. Shift Recycling is an OES-approved primary processor, meaning that our recycling facility is fully compliant with all environmental regulations. Any hazardous materials such as lead glass are handled in a manner safe for the environment and our employees.</p>
    <p class="p2">At the end of our recycling process, we send our raw commodities such as plastic and metal<em> (where?)</em>. These items are sent to approved downstream refiners who melt them down to create new products including plastic outdoor furniture and metal construction rebar.</p>
</div>
<div class="x-column vc one-half" style="display-inline:block; vertical-align:middle;">
    <img class="x-img center-text x-img-rounded none" style=" margin-left: auto; margin-right: auto; " src="http://click2recycle.ca/wp-content/uploads/2014/05/plantSmall.png" alt="The Recycling Facility">
</div>

Edit

I've tried both of the suggestions below but unfortunately, the page now looks like this with the image below the text column. I should have mentioned that I am using a WordPress theme (called X) to build this site and I am now starting to worry that it is part of the problem. Is there any more information I can provide that might help?

Artem Petrosian

You are using wrong selector name, should be

display: inline-block;

Also, you should specify the width for both blocks, e. g. 40% and 50%

PS: I've recommend you to avoid using inline styles into your HTML, the good practice to specify styles into separate .css file, like this:

.x-column {
    display: inline-block;
    vertical-align: middle;
    width: 49%;
}

.x-column img {
    width: 90%;
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

How do I vertically center text with CSS?

From Dev

How can I vertically center text over a responsive image?

From Dev

How do I vertically center a pseudo element image in CSS?

From Java

How do I center text vertically and horizontally in Flutter?

From Java

How do I center text horizontally and vertically in a TextView?

From Dev

How do I Vertically Center Text in My Navigation Bar?

From Dev

How do I vertically center text in a DIV using CSS?

From Dev

How do i center a text field horizontaly and vertically in flutter

From Dev

How do i vertically align the text in the center of jumbotron?

From Dev

how to vertically center text beside image

From Dev

How do center an image vertically within LI

From Dev

How do I align text vertically over a background image?

From Dev

How do I keep an image and text centered vertically with bootstrap?

From Dev

How to vertically center text in a block elment with changing font size?

From Dev

How to center image vertically?

From Dev

How to center image vertically?

From Dev

How do i center this div vertically?

From Dev

How to center image and text inside a block

From Dev

How do I horizontally and vertically center an image on the page, except for when it's too big to fit?

From Dev

how do i vertically center this text within this div (normal fixes aren't working)?

From Dev

How to center text vertically in flexbox with image stick to the bottom?

From Dev

Center block vertically if text inside it too loing

From Dev

How do I flip an image vertically in Java?

From Dev

How can I center the text within a <p> tag vertically?

From Dev

How to vertically center text in a <span>?

From Dev

How to center text vertically in a heading?

From Java

How do I vertically align text in a div?

From Java

How do I get a react bootstrap card to center vertically?

From Dev

How do I vertically and horizontally center all these elements?

Related Related

  1. 1

    How do I vertically center text with CSS?

  2. 2

    How can I vertically center text over a responsive image?

  3. 3

    How do I vertically center a pseudo element image in CSS?

  4. 4

    How do I center text vertically and horizontally in Flutter?

  5. 5

    How do I center text horizontally and vertically in a TextView?

  6. 6

    How do I Vertically Center Text in My Navigation Bar?

  7. 7

    How do I vertically center text in a DIV using CSS?

  8. 8

    How do i center a text field horizontaly and vertically in flutter

  9. 9

    How do i vertically align the text in the center of jumbotron?

  10. 10

    how to vertically center text beside image

  11. 11

    How do center an image vertically within LI

  12. 12

    How do I align text vertically over a background image?

  13. 13

    How do I keep an image and text centered vertically with bootstrap?

  14. 14

    How to vertically center text in a block elment with changing font size?

  15. 15

    How to center image vertically?

  16. 16

    How to center image vertically?

  17. 17

    How do i center this div vertically?

  18. 18

    How to center image and text inside a block

  19. 19

    How do I horizontally and vertically center an image on the page, except for when it's too big to fit?

  20. 20

    how do i vertically center this text within this div (normal fixes aren't working)?

  21. 21

    How to center text vertically in flexbox with image stick to the bottom?

  22. 22

    Center block vertically if text inside it too loing

  23. 23

    How do I flip an image vertically in Java?

  24. 24

    How can I center the text within a <p> tag vertically?

  25. 25

    How to vertically center text in a <span>?

  26. 26

    How to center text vertically in a heading?

  27. 27

    How do I vertically align text in a div?

  28. 28

    How do I get a react bootstrap card to center vertically?

  29. 29

    How do I vertically and horizontally center all these elements?

HotTag

Archive