Looks like your avatar is just a blank image (http://0.gravatar.com/avatar/04c8b6f5747dc19908b60d72f7ecdb58?s=64&d=blank&r=G), right?
It doesn’t stretch for me, looks fine.
sorry i just changed let me make it gain like what it was
Sorry to say this, but it’s your theme again. It forces every single image in post area to be 100% wide:
.blog article img {
width: 100%;
}
Add this to your theme’s CSS file, to make sure it can’t stretch author image in Fancier Author Box
.ts-fab-avatar > img {
width: 64px !important;
}
thats great now .. sorry for so much of trouble , but i want to change the font for recent posts also
You’re welcome 🙂
.ts-fab-latest li {
font-size: "your font size";
}
This should change font size in posts list.
hi Slobodan,
I have the same problem.
My site is http://www.party-addict.com
In which file I have to edit the css?
You should finding your theme’s CSS file, usually called style.css and add the code at the of the file.
add or change? where in the css? I added it because it does not change anything.
You can add it anywhere in the style.css (I suggest you do it near the end, so you can find it more easily later if you wish to change it again).
If it doesn’t work, try adding this:
.ts-fab-latest li {
font-size: "your font size"!important;
}
nothing will not work either with this.
Could you copy/paste here the code you’re inserting in your style.css file?
Also, what exactly are you trying to achieve?
Thanks
I’ve tried before with:
.ts-fab-avatar > img {
width: 64px !important;
}
and then with:
.ts-fab-latest li {
font-size: “your font size”!important;
}
putting them in the bottom of the style.css, but nothing.
Hi,
I don’t see any of that code anywhere in your theme’s CSS file – http://www.party-addict.com/wp-content/themes/unspoken1/style.css
which of the two should I enter?