hi everyone
ive enabled friendly url’s and alias paths on my page
everything seems to work, as long as im not logged in...
when i am loged in, quick edit appears on the page and for
some reason it doesnt load properly and pops up at the top of the page,
completely styleless, pushing the page content downwards
i looked through the page source with firebug (firefox addon) and found the following two lines:
<script src="assets/modules/quick_edit/javascript/QuickEdit.js" type="text/javascript">
<link href="assets/modules/quick_edit/styles/toolbar.css" rel="stylesheet" type="text/css">
as you might have guessed, these two paths dont correspond to the manual when alias paths are enabled..
so i went and changed the paths to the following in firebug:
<script src="/assets/modules/quick_edit/javascript/QuickEdit.js" type="text/javascript">
<link href="/assets/modules/quick_edit/styles/toolbar.css" rel="stylesheet" type="text/css">
and now the page looks like it should
BUT now i need to do this in the actual source code where the 2 lines are printed
but i cant find them
can someone help or does someone already know where i could find these 2 lines?
thank you