Software Archive
Read-only legacy content
Announcements
FPGA community forums and blogs have moved to the Altera Community. Existing Intel Community members can sign in with their current credentials.
17060 Discussions

Image Gallery Issue

Olushola_O_
Beginner
498 Views

Image gallery is very awesome it displays but "Could not extract a stage height from the css. traced height 0px "

And Ive tried adding height: 100px; width: 100px;

used traced height: auto;

nothing. Intel Gurus, please help

0 Kudos
1 Reply
Amrita_C_Intel
Employee
498 Views

Make sure you include:

Head:

<link type="text/css" rel="stylesheet" href="galleria/themes/classic/galleria.classic.css">
<script type="text/javascript" src="js/galleria-1.2.5.min.js"></script>
<script type="text/javascript" src="galleria/themes/classic/galleria.classic.min.js"></script>

Also the in page style:

#galleria{height:467px}

And below the images:

<script type="text/javascript">
$('#gallery').galleria({
width: 700,
height: 467 //--I made heights match
});
</script>

Refer to this link

http://stackoverflow.com/questions/6610522/galleria-fatal-error-could-not-extract-a-stage-height-from-the-css-traced-heig

 

 
0 Kudos
Reply