Hey Andre,
It seems like your Joomla template doesn’t include schema markup by default, which is why you’re not seeing the `itemscope` and `itemtype` attributes. Some templates may include basic schema, but it’s not always the case.
Since you’re using RSSEO, it’s adding schema at the bottom, but for more control, you might need to manually add schema to your article elements. You can do this by modifying your template's `index.php` or the article view file (`default.php`), adding something like:
```html
<div class="com-content-article item-page" itemscope itemtype="
https://schema.org/Article">
<h1 itemprop="headline">{{ article.title }}</h1>
</div>
```
This ensures search engines see the right schema on your articles. If you're not comfortable with file edits, there are other Joomla extensions that can handle this for you.
Hope that helps! Let me know if you need more tips!
