Perch Gallery Problem?

I’m sure as I get more comfortable with all of this I’ll be more inclined not to use canned CSS.

Canned CSS is fine, the Perch Peeps are saving us time by including it which I personally appreciate, but something like tag (not class styles) styles should be thought of as the Highlander movie character: “There can be only one.” Or, there should only be one.

Todd


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

which part of it controls the album titles under each thumbnail

ul#albumdisplay

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

You had to know this was coming. :slight_smile:

So, how do I center type in an unordered list? And, why is that even an unordered list?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Change it to

ul#albumdisplay {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 0;
}

or add this in Page>HTML Markup

<style type="text/css">
<!-- 
    ul#albumdisplay .album { text-align:center !important; }
-->
</style>

D


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options

Why a list? Lists are natural groupings. Grocery lists, bucket lists, a
list of menu choices, a list of photos… You don’t have to use the list
structure to create this visual layout, but using it gives you a way to
structurally make sense of what is there. This is what is meant by Semantic
HTML.


Ernie Simpson

On Tue, Jun 26, 2012 at 8:31 PM, RavenManiac email@hidden wrote:

You had to know this was coming. :slight_smile:

So, how do I center type in an unordered list? And, why is that even an
unordered list?


freewaytalk mailing list
email@hidden
Update your subscriptions at:
http://freewaytalk.net/person/options