haincha
Member
Hello, all. I am looking for some styling help. I am fairly new to CSS, and if Inspect Element doesn't tell me exactly what template to edit, I get a little lost.
But, I am using Brogan's code for putting the avatar next to the quote, but I am wanting to put it inside of a CSS chat bubble if possible. I created a bubble using the code:
I created this using http://www.ilikepixels.co.uk/drop/bubbler/
If anyone has some ideas or easy ways to translate this, I would be very grateful!
But, I am using Brogan's code for putting the avatar next to the quote, but I am wanting to put it inside of a CSS chat bubble if possible. I created a bubble using the code:
Code:
.bubble
{
position: relative;
width: 500px;
height: 120px;
padding: 5px;
background: #FFFFFF;
border: #lightblue solid 3px;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.bubble:after
{
content: "";
position: absolute;
top: 12px;
left: -30px;
border-style: solid;
border-width: 10px 30px 10px 0;
border-color: transparent #FFFFFF;
display: block;
width: 0;
z-index: 1;
}
.bubble:before
{
content: "";
position: absolute;
top: 10px;
left: -35px;
border-style: solid;
border-width: 12px 32px 12px 0;
border-color: transparent #lightblue;
display: block;
width: 0;
z-index: 0;
}
I created this using http://www.ilikepixels.co.uk/drop/bubbler/
If anyone has some ideas or easy ways to translate this, I would be very grateful!