Customizing SMF > SMF Coding Discussion

How do I remove board icon/author/title?

(1/1)

ocmdiaz714:
Any help would be great. Thanks.

Shambles:
You could try disabling the display of that line..

In index.css, find "#forumposts .cat_bar" and within that identifier add "display: none;"

So if it looks like this:


--- Code: (find) ---#forumposts .cat_bar
{
    margin: 0 0 2px 0;
}
--- End code ---



--- Code: (replace) ---#forumposts .cat_bar
{
    margin: 0 0 2px 0;
    display: none;
}
--- End code ---

That's just my first thought - there's bound to be a better way which includes leaving the actual 'bar' in place  :o

ocmdiaz714:

--- Quote from: Shambles™ on August 23, 2012, 05:01:13 AM ---You could try disabling the display of that line..

In index.css, find "#forumposts .cat_bar" and within that identifier add "display: none;"

So if it looks like this:


--- Code: (find) ---#forumposts .cat_bar
{
    margin: 0 0 2px 0;
}
--- End code ---



--- Code: (replace) ---#forumposts .cat_bar
{
    margin: 0 0 2px 0;
    display: none;
}
--- End code ---

That's just my first thought - there's bound to be a better way which includes leaving the actual 'bar' in place  :o

--- End quote ---

Thanks, but I went ahead and change the font size to 0, and that did the trick. :)

Navigation

[0] Message Index

Go to full version