ClioSport.net

This is a sample guest message. Register a free account today to become a member! Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

  • When you purchase through links on our site, we may earn an affiliate commission. Read more here.

Lightbox Folders

Car  1.6 Ford Focus
Does anyone know if its possible to modify the lightbox effect on a web page so that the css file is in the root folder instead of a separate css folder?
 
I should think so.

This is a lightbox type script referenceing a css in a folder.
Code:
<link rel="stylesheet" [B]href="css/lightbox.css"[/B] type="text/css" media="screen" />

In theory, all you would need to do is change that to
Code:
<link rel="stylesheet" [B]href="lightbox.css"[/B] type="text/css" media="screen" />

Having said that, you might need to edit other parts to make it work properly.
 
Back
Top