I’ve got the twitter module displaying text and images but the images don’t scale to fit in the region so you can only see a small part of any attached image. I’m just using the default styling that comes with [photo]. So this:
.item{margin-top:20px}div.profileimage{width:10%;display:inline-block;vertical-align:top;position:relative;overflow:hidden;margin-left:2%}div.profileimage img{width:100%;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;border-radius:50%;border:5px solid #ecf0f1;position:relative}div.message-container{width:80%;display:block;position:relative;padding-left:20px;vertical-align:top;display:inline-block}.message-container .user{font-weight:700;display:inline-block;margin-bottom:.2em;color:#95a5a6}.message-container .date{float:right}.message-container .photo{text-align:center}.message{width:100%;padding:.5em 1em;padding:20px;background-color:#ecf0f1;position:relative;-webkit-border-radius:8px;-moz-border-radius:8px;-ms-border-radius:8px;-o-border-radius:8px;border-radius:8px;text-align:left;display:inline-block}
I know I can’t change image size with css, but I’m just wondering is there any way other than making the region bigger that will get the twitter feed to fit. Thanks.