I removed the background of my template, but it appears profiles depended on it to look good. Here is what profiles look like now:
Is there a way to add a background area over profiles using custom CSS? Help appreciated.
You have one div that is 30% and another that is 79.5% thus they don't fit so well. :)
#detailedinfo
{
width: 79.5%;
float: right;
}
Try:
#detailedinfo
{
width: 70%;
float: right;
}
Oh hey that is great, I always just thought I had removed content but I guess my changes to the width caused the problem.
Thank you! <3