Moderator
t-p
(@t-p)
how do I remove extra spacing below my feature picture
Look for this rule in your theme’s css.style file:
.alignnone {
margin: 0 20px 1.5em 0;
}
Try changing it to:
.alignnone {
margin: 0 20px 0 0;
}
But be aware that your customizations will be over-written the next time you upgrade. Also, keep the default WordPress theme unedited, because having access to an unedited version of the theme is vital when dealing with a range of site issues. For this reason, consider creating a Child Theme for your customizations and/or use Custom CSS Manager plugin: http://wordpress.org/plugins/custom-css-manager-plugin/ and add the code there.
Another question, how can I get the site to load a little quicker?
It opened lightening fast for me!
Hmm that doesn’t seem to be working. I tried that in my child theme and in the original theme’s css.style file. Is there another code I can use? Thank you!
Moderator
t-p
(@t-p)
I just checked in FireBug, it did make difference of 25px
If you want to reduce the space further, check if re-cropping the image can help.