My Github page looks different from the remote Jekyll theme I am using? Here is my Github page https://mmm-code.github.io/jekflix-template/. Here is the actual theme https://www.rossener.com/jekflix-template/. Is there something I need to do differently?
your urls need to contain the repo name in them when you host on GH with a project repo.
Normally people use baseurl to do this, you can set the baseurl in your config file:
baseurl: /jekflix-template
then on all your urls you prepend it {{site.baseurl}}/assets/myfile
Your theme is likely doing that already so try just setting the baseurl and see if it works.
Awesome, that worked