If long hypertex (2 lines or more) is in bullet list then the bullet is at the last row not at the first row.
]]>Hi, i my blog with this theme i see 10 posts and the link to old post.
I want have 9 posts for page and not 10 for page.
How i can do?
Thank’s
Armadamm
Hello!
First of all, Thank you for providing this beautiful theme!
I would like some help hiding the author from my posts. Also, I would like an advice on hiding the date and labels from my articles, that are shown on the top. Is anyone having the same issue?
Thank you in advance!
Hi.
I noticed that, when in a single post you can’t navigate to the previous/next post.
So, here is the code I used in /single.php line 108 to add the links.
<div class="nav-links">
<div class="nav-previous">
<span><i class="fa fa-arrow-circle-left"></i><?php previous_post_link( ' %link', '%title', true ); ?></span>
</div>
<div class="nav-next">
<span><?php next_post_link(' %link', '%title', true); ?> <i class="fa fa-arrow-circle-right"></i></span>
</div>
</div>
Bests
Lena
The theme does not display date right and the display does not keep the settings. Example: Prosinec 06, 2018, should be 6. prosinec 2018 or simply accordning the WP settings as 2018-12-06.
]]>The normal font is very thin and not comfortable to read. I have accomodated it by the addon Accessibility: on https://gn6.cz – an icon on the left upper corner: setting “?itelné písmo” makes it more comfortable to read.
]]>Hi,
the template is compatible with wordpress 5?
thank you
]]>Hi!
When I first activated the theme and scrolled I got a console error:
Uncaught TypeError: Cannot read property 'top' of undefined
This was because I had no menu set. I was able to remove it by adding:
if ($('.navbar').length === 0) {
return
}
I added it just before the top-nav-collapse
class gets added on the scroll event.
Thanks for creating this great theme. Thus far I have found only one thing I don’t like about it: it looks terrible when pages are printed on paper (and some of my readers prefer that). I tried adding some css for printing conform suggestions here, but I couldn’t get anything to work. Do you have a suggestion?
]]>Hi.
Thanks for the great theme.
I just want to let you know that if the blog has non-latin title ex greek then the substr you use in header.php to get the title’s first letter isn’t work correct.
So the suggested fix is the following.
Replace the
echo '<span class="first-letter">' .substr( get_bloginfo('name'), 0, 1 ) . '</span>';
in line 34 in header.php with the following:
echo '<span class="first-letter">' . mb_substr( get_bloginfo('name'), 0, 1 ) . '</span>';
Bests
Lena