Moderator
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Can you copy the content-home.php
file from the Spun theme and paste it into your Child Theme directory?
That’s what you do in a Child Theme by the way; every time you want to modify a PHP file other than funcitons.php you copy it from the parent theme and paste it into the Child Theme directory.
Moderator
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Done this already
Wait, when did you do this?
Moderator
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Okay, I thought you meant you did it a while ago and you had modified that file already. I wanted to make sure the changes I was about to recommend would have worked to your file.
Carrying on, try replacing all of the code from your content-home.php
file (of your Child Theme) with the code from this PasteBin page: http://pastebin.com/e40FLjei
Moderator
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Does anything happen on the homepage of your website?
Moderator
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Can you link your website?
Yes I’ve tried but it doesnt show…
Try: 8oopx.de/wordpress
Moderator
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Try removing your ‘overflow: hidden;
‘ style in your Child Theme style.css file, here:
.hentry.no-thumbnail {
...
overflow: hidden;
}
Yes it works! Great!
Thank you very much!
Moderator
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
When there is more than one row of circles (or squares in your case) this extra word will be overlapped, you can explore this by resizing your browser to a smaller size.
To resolve this you could add the following CSS:
.home .hentry { margin-bottom: 30px;}
Yes. Perfect. So the mobile site works too !!!
Moderator
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
BTW if you want to get the words centred get rid of your
entities and put this in the CSS:
.home .hentry p { text-align: center; }