Jump to content

JohnD

New Members
  • Posts

    4
  • Joined

  • Last visited

JohnD's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Hi again , Finally , it was the definition of the path on my layout file : <?php echo $this->headLink()->appendStylesheet('http://zendtest.local/media/css/style.css'); ?> Using an absolute path solved my problem ,it works . But now ,when observing the source code of my browser when loading the page I mention that the "style link" is mentioned twice ; <link href="style.css" media="screen" rel="stylesheet" type="text/css" /> <link href="http://zendtest.local/media/css/style.css" media="screen" rel="stylesheet" type="text/css" /> I can't explain that , although my application works on my local development environment ; < ?php /* Comments : Thanks to this forum */ JohnD
  2. Hi , I'm new to the Zend Framework , sorry for my dump question . I have created a project with the zf tool , my layout is archived with layout.php and CSS . Only the index.php ( index/index.php , someothercontroller/index.php etc... ) are working with the CSS . All other view's (index/otherview.php , someothercontroller/otherview.php ) are rendered without CSS . It seems that the path of the CSS file can't be found . My CSS file is in the APPLICATION_DIR/public/style.css directory . My lyaout.php file is configured as follows : < ?php echo $this->headLink()->appendStylesheet('style.css') ?> The source code on my browser shows : <html > <head> <title>Your Title</title> <link href="style.css" media="screen" rel="stylesheet" type="text/css" /> </head> My browser's CSS source code shows the same CSS path on all pages (pages that are rendered correctly and pages that don't ) I can provide more details if my question is not understandable . Thanks
  3. Hi , Thanks for your respond , I appreciate your suggestions . Of course I'll order the book from amazon.com and try out my limits . Thanks again .....
  4. Hi , I'm a totally self educated web designer . My learning resources are usually from the web , Phpkiller.com included . Mysql , php , OOP and Actionscript 3 are the fields that I have learned while involved with web design . A new topic that I find amaging is the Zend framework , but it is totally confused to me . Many articles on the net are targeted to older versions of the zend framework and the articles on the official site are mostly targeted to experienced users . Books that I have found from amazon.com are also targeted to older version of this framework .Even screen-casts on your site are targeted to older versions of zend . Can you please list the learning route that a new zend framework developer must follow to learn this framework .The opinion from a experienced developer is important to me . Thanks ..
×
×
  • Create New...