Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8221335
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T13:52:46+00:00 2026-06-07T13:52:46+00:00

This is my LoadSkin view helper. I use this class to call the CSS

  • 0

This is my LoadSkin view helper. I use this class to call the CSS files within an XML. See below:

public function loadSkin($skin)
{
    $skinData = new Zend_Config_Xml('./skins/' . $skin . '/skin.xml');
    $stylesheets = $skinData->stylesheets->stylesheet->toArray();

    if(is_array($stylesheets))
    {
        foreach($stylesheets as $stylesheet)
        {
            echo $this->view->headLink()->appendStylesheet('/skins/' . $skin . 
                    '/css/' . $stylesheet);
        }       
    }
}

But i have one problem, i have 3 CSS files:

  • default.css
  • text.css
  • form.css

But the loop is wrong. First he takes the default.css. After he takes default.css and text.css. And finally he takes default.css, text.css and form.css. But i need only one loop working correctly.

Look below what’s happen:

https://i.stack.imgur.com/P0iBA.png

Someone can help with this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-07T13:52:47+00:00Added an answer on June 7, 2026 at 1:52 pm

    That’s because you are echoing inside foreach loop . HeadLink view helper is container in each iteration of loop you had appended/added css int it , as a result in each echo you are echoing the whole container which contains all the previous added css hence do this instead

     if(is_array($stylesheets))
        {
            foreach($stylesheets as $stylesheet)
            {
                 $this->view->headLink()->appendStylesheet('/skins/' . $skin . 
                        '/css/' . $stylesheet);
            }       
        }
    

    Then in your layout.phtml inside do

    <head>
    <?echo $this->headLink() ?>
    </head>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have my view helper in Library/My/View/Helper/LoadSkin.php , I added this line in application.ini
This code below allows me to find the word error in all my files
This is my MVC model: public class Link { [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public Guid ID {
This CSS creates a nice effect when applied against a single blockquote within the
This works. $(document).ready(function(){ $(.items article).click(function(){ window.location=$(this).find(a).attr(href); return false; }); }); However , when the
This link describes a function on a Money object for adding funds together of
This is in regards to merge XCode project.pbxproj files, but the same principle applies
This onclick function: VVi.$row['id']..onclick = function() { alert('1'); var ResultI = '.$row['id'].'; location.href='visuals.php?ResultI=' +
This is an example of the code am using. I use a modified version
This is what i tried . In my view.py file , import logging logger

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.