@
GoodApples @
Valcav
After doing some research I found a way to work cross browser including IE.
First open the Templates/CSS Templates/additional.css in the style you are working with.
Add the following at the bottom of the template.
HTML:
.rounded {
border-radius:1ex;
-webkit-border-radius:1ex;
-moz-border-radius:1ex;
}
Then save that.
If you applied the edit in the first post revert the template, DragonByte Tech: InfoPanels Templates/dbtech_infopanels_panel
Now open the template DragonByte Tech: InfoPanels Templates/dbtech_infopanels_panel
Search for the following code:
HTML:
<img src="{vb:raw avatar.0}" alt="{vb:rawphrase edit_avatar}"{vb:raw avatar.1} />
And Replace it with this:
HTML:
<img src="{vb:raw avatar.0}" class= "rounded" style= alt="{vb:rawphrase edit_avatar}"{vb:raw avatar.1} />
If you want more of a radius open the CSS Templates/additional.css
and change all instances of 1 to a higher number, in the .rounded you added there.