Hi,

I would like to use this great theme for my website.

I got a little problem with the display of the terms in my custom node template. I am using this tweak http://11heavens.com/putting-some-order-in-your-terms to include my free tagging vocabulary in the Headline: "title" by "term". Unfortunately Sky themes the vocabulary in a list with black dots in front of the terms. Tried to change that for a few hours now and don't find the solution. Could someone please tell me how to do it or give me a hint.

Thanks in advance!

Axastin

Comments

aimutch’s picture

Can you attach a screenshot?

jacine’s picture

Status: Active » Closed (fixed)

Axastin,

By black dots, I assume it's ouputting in a <ul>.

Try adding display: inline; to the <ul> and <li> to your CSS for it. Not sure what you did, but it looks to be wrapped in a <div class="vocabulary ...> in the tutorial, so this should work:

.vocabulary ul,
.vocabulary li {
  display: inline;
}