Modify the size of an image doesn´t work
-
Hi! I’ve added a text widget in which I included the following code to have a section for social icons:
<img SRC=”https://ticogadget.files.wordpress.com/2014/10/social_facebook.png” />
Originally, I had the attributes of WIDTH=”45″ HEIGHT=”45″; however, since that didn´t work, I removed those attributes to get the original size of the images which is 70px. Still showing up the same size, it doesn’t change.
Thank you!
The blog I need help with is: (visible only to logged in users)
-
Hi Fernando,
Right now, your social icons are 70px by 70px because you have the following Custom CSS for your site:
#social_icons img { width: 70px; height: 70px; display: inline; }If you’d like the icons to by 45px by 45px, you can change that CSS to this:
#social_icons img { width: 45px; height: 45px; display: inline; }To add or change custom CSS, go to your My Sites page and click the Customize link under the blog’s title. In the Customizer, open the CSS section and enter your changes in the CSS editor there.
Please let me know if you have any questions about that. :)
- The topic ‘Modify the size of an image doesn´t work’ is closed to new replies.