If you'd like to add an image next to the logo in your Divi Theme, you can do so with the following CSS:
.logo_container a:after {
display: inline-block;
position: relative;
vertical-align: middle;
content: ' ';
width: 93px;
height: 43px;
background: url('/path/to/your/image.png');
left: 10px;
}
You'll need to adjust the width, height, and URL to that of your image. The value of the "left:" property determines the space between the logo and your added image.
Related Post: Adding CSS to the Divi Theme
0 Comments