I discovered that the “recent posts” sliding text on top of the homepage is not displayed correctly in Safari. See http://www.whatsonweibo.com through Safari, or see the image attached. How do I fix this problem? Image URL: http://tinypic.com/r/35co5sy/8
Regards, Manya
1 Answers
Hi,
To resolve this issue, you can log in to Dashboard > Customize > Custom Code, then add the following code to the Custom wp_head() code.
<style>
.chrome #under-navigation .dw_focus_headlines .headlines .time_diff {
top: -12px !important;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
#under-navigation .dw_focus_headlines .headlines .time_diff {
top: 0 !important ;
}
}
</style>
Hope this helps !
This works! Perfect, thanks Dominic
Please login or Register to submit your answer