Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How Do I Do This?


chrishajer
Participant

@chrishajer

There is a difference between id and class. Maybe you’re using one or the other.

This is a class:

.forumlist {
font: whatever;
}

This is an id:

#forumlist {
font: whatever;
}

You’re using <table id="forumlist-1"> but your css doesn’t contain markup for that (it has forumlist, not forumlist-anything. There is markup for #forumlist, but without numbers. Maybe you could do something like <table id="1" class="forumlist"> or something? That way, the forumlist class doesn’t need to be unique, since each city will sort of look the same, and the id is unique to each city. You still need to add the proper tags in your CSS, #1, #2, #3 for the ids and .forumlist (which is already there I believe.)

Hope this advice is accurate. Let us know if it works.

Skip to toolbar