I was really surprised and a little pissed because after everything, this will happen out of nowhere. I’ve been working on this site for several days already the suddenly this one. I hope someone can help me find out what happened. I was not doing anything at all when this problem happened. After playing on my phone, I came back on my computer and refresh the site just to double check and poof. This happened.
BUMP.
I mainly used the alignleft and alignright CSS codes on the hyperlinks at the bottom of my page (the one for page navigation) but I changed it already by using <div style=”float: left;”></div> and <div style=”float: right;”></div> since alignleft and alignright won’t work anymore.
If you check this page: http://myhj3313.dothome.co.kr/?page_id=638 the image at the bottom part is not centered but I used the code <img class=”aligncenter” src=”http://myhj3313.dothome.co.kr/wp-content/uploads/2014/08/fair_count_csm.png” alt=””> and it worked before but now, as I’ve said, it doesn’t work anymore. I’m really confused with what happened because it happened all of a sudden. I didn’t change any part of the align codes.
On line 7273 of your stylesheet, you have:
.home-top {
background-image: url('http://myhj3313.dothome.co.kr/wp-content/uploads/2014/08/2014-03-Grey-White-Wallpaper-29.jpg');
but whoever added that code forgot to add the closing bracket, causing cascading parsing errors throughout the rest of the stylesheet. You need to add the closing bracket:
.home-top {
background-image: url('http://myhj3313.dothome.co.kr/wp-content/uploads/2014/08/2014-03-Grey-White-Wallpaper-29.jpg');
}
Also, be aware that making changes to the theme’s stylesheet is not recommended, as you will lose any changes you made when you update the theme. It’s better to use a custom CSS plugin.