ga-wdi-exercises/project4

css styling disappears on page refresh

Closed this issue · 3 comments

https://github.com/twelve13/budgeting/tree/styling

all styling disappears when I refresh the page
from my googling I think it has to do with reconfiguring to html5. there's some talk of modifying a .htaccess file - is that really necessary? thanks!

One solution is to replace the relative path with an absolute one. There likely is a more elegant configuration solution, but this will work:

	<link rel="stylesheet" href="http://localhost:4000/assets/css/styles.css">

yay! elegant enough for me! thanks