I have problem with link wkhtml with css from zurb fundation framework 5. I use laravel and in myhtml I have absolute url to css.
Pdf is ok but without layout from css.
Any ideas?
I tried also with local css in html file.
I have problem with link wkhtml with css from zurb fundation framework 5. I use laravel and in myhtml I have absolute url to css.
Pdf is ok but without layout from css.
Any ideas?
I tried also with local css in html file.
you can use helpers in your links
<link rel="stylesheet" type="text/css"
href="{{public_path().'/assets/css/fo.css'}}" />
now to include css file use this :
<link rel="stylesheet" type="text/css" href="{{ url('css/filename.css')}}" />