line 15 is WP_PLUGIN_URL.'

// Add the stylesheet to the header
wp_enqueue_style(
'jquizzystyles'
WP_PLUGIN_URL.'/jquizzy/source/jquery.jquizzy.css'
false,
all);

{

    font-family "Myriad Pro", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
margin: 0;
padding: 0;
border: 0;
text-decoration: none;
color: #333;

}

Hi Alicia,

the only wrong thing i see in your snippet is the lack of two commas

// Add the stylesheet to the header
wp_enqueue_style(
'jquizzystyles', /// here
WP_PLUGIN_URL.'/jquizzy/source/jquery.jquizzy.css', /// and here
false,
all);

hope this solve your problem

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.