Yes. Open the file single.php and get this line:
<p class="post-tags"><?php the_tags('<b>' . __('Tags', 'annarita') . '</b>: '); ?> </p>
and move it after the_content(); the line 59. In conclusion you should have:
the_content();
<p class="post-tags"><?php the_tags('<b>' . __('Tags', 'annarita') . '</b>: '); ?> </p>
Thank you! It allowed me to move them to the bottom for the posts after I click on the individual posts but they remain at the top when they are displayed on the homepage. (What I mean is that the same post will have the tags at the top when on the home page and at the bottom when clicked on). Is there a way to move it to the bottom all the time?
If you want to have the tags always at the bottom you have to change the following files: index.php, search.php, single.php (which you already changed), author.php and single-annarita_review.php
Worked like a charm! Thank you!