You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I already have title: 'xxxxx' on my _config.yml but it won't update on my GitHub repository wepage. It works fine with some other themes but not with this one. Am I doing something wrong?
The text was updated successfully, but these errors were encountered:
Hi @MaherDaoud1, I had the same issue, and the cause was a top level header overwriting the value in _config. To solve that, I just removed the top title in my index.md
Example of a wrong index.md
# Title that overwrites your _config.yaml
website content.....
A working example:
#### Title that does not overwrites your _config.yaml
because it has 4 #s, so it is not considered as a "title" to overwrite your config.
website content.....
Another working example:
content over your top level header also blocks the title overwrite
# Title that does not overwrites your _config.yaml
website content.....
I already have title: 'xxxxx' on my _config.yml but it won't update on my GitHub repository wepage. It works fine with some other themes but not with this one. Am I doing something wrong?
The text was updated successfully, but these errors were encountered: