Ok my bad
I know all that in the image you indicated and am able to mange all of that.
Here's an image that I have made to indicate what I'm seeking to create via CSS
I do NOT want an image to be used in this instance.
The brown colour is to highlight for you so that you can see what I'm looking to create.
I've been fiddling in static html since I first posted and built this ...
<div class="speech-bubble">
<h1>Chat Bubble</h1>
<p>Additional text in bubble</p>
</div>
.speech-bubble { position: relative; background: #00aabb; border-radius: .4em; }
.speech-bubble:after { content: ''; position: absolute; left: 0; top: 50%; width: 0; height: 0; border: 20px solid transparent; border-right-color: #00aabb; border-left: 0; border-bottom: 0; margin-top: -10px; margin-left: -20px; }
It sort of works but I'm looking to see if we can pull that information into a similar block CSS that we already have.
Is this possible?
Hope that helps.