in

Shozam Community

A place to learn, share and interact with other Shozam users

Theme Glitch in v.35

Last post 05-26-2009 12:31 AM by Razvan Neagu. 1 replies.
Page 1 of 1 (2 items)
Sort Posts: Previous Next
  • 05-25-2009 4:34 PM

    • Cowboy
    • Top 10 Contributor
    • Joined on 05-15-2007
    • Granger Township, OH
    • Posts 477
    • Points 7,490

    Theme Glitch in v.35

    Working with v.35, I modified one of my previous themes to hide the spacing above the banner.  The theme was saved under another name.

    After generating the gallery, the space above the banner was still there.

    Next, I used a standard Shozam theme, hid the space above the banner, made no other changes and saved it under another name.  When the gallery was generated, the space above the banner was still there.

    Looking at the theme.css, the following code was there:

    .menu0
    {
        display: Hide;
        height: 23px;
        clear: both;
    }

    For whatever reason, Shozam is using Hide instead of none for display.  When I modify the theme.css by changing Hide to none, the space above the banner is hid.

    Below is what works:

    .menu0
    {
        display: none;
        height: 23px;
        clear: both;
    }

    Cowboy
    If it ain't broke... fix it until it is!

    My Galleries: http://ohiowebs.net/cowboy/

    "We're all spending too much time and energy trying to be politically correct about everything." - Clint Eastwood
    • Post Points: 20
  • 05-26-2009 12:31 AM In reply to

    Re: Theme Glitch in v.35

    Cowboy, good catch.

    Indeed the following CSS is invalid:

    display: Hide;

    Correct CSS is

    display: none;

    The display property in CSS can have the value of none to make the affected element (e.g. text, image) not appear and not occupy any space.

    The visibility property in CSS can have the value of hidden to make the affected element not appear on the page but still affect the page layout (so blank space replaces the space the element would have taken).

    visibility: hidden;

    Relevant links:

    Razvan Neagu
    Shozam Web Gallery Generator
    Executive Team
    • Post Points: 5
Page 1 of 1 (2 items)
Copyright 2010, KOMOTION, Inc. All rights reserved.