FridayPhrases
Forum Replies Created
-
Thanks!
Thanks again!
Okay. I went into “twitter-like-box-reloaded/Twitter_Like_Box_Widget.class.php” again and changed another line of the .php so I had the right size.
<img src=”<?php echo $twitter[‘followers’][$i][‘profile_image_url’];?>” width=”48″ height=”48″ alt=”<?php echo $twitter[‘followers’][$i][‘screen_name’];?>”>
Changed to:
<img src=”<?php echo $twitter[‘followers’][$i][‘profile_image_url’];?>” width=”75″ height=”75″ alt=”<?php echo $twitter[‘followers’][$i][‘screen_name’];?>”>
I know this is probably pretty basic stuff, but I had no idea how to do it.
Thank you!
For whatever reason, the style page “Main Settings” (where the custom CSS box is) isn’t reflecting any changes to the image height. That’s why I went into the .php. Even so, I am not sure how to change the size of the actual image. It looks like it’s changing the size of the container for each image. Can you advise on how I can fix that?
Here is the page that I’m trying to imitate with the plugin, except including your linking and automation from Twitter.
Oh, here’s the page that I’m trying to make the plugin imitate, except including your fantastic linking and labeling. 🙂
I fixed the problem, although it didn’t change the size of the actual image. I simply went into the file “twitter-like-box-reloaded/Twitter_Like_Box_Widget.class.php” and updated this:
.tlb_user_item{
line-height:1;
padding:5px 0px 3px 5px;
width:48px;
float:left;
text-align: center;
}to this:
.tlb_user_item{
line-height:1;
padding:5px 0px 3px 5px;
width:75px;
float:left;
text-align: center;
}It’s not perfect, but it works for now.