Author Topic: Categories are centered, i want the aligned "left" how?  (Read 4964 times)

0 Members and 1 Guest are viewing this topic.

Offline alycium

  • Pre-Newbie
  • Posts: 2
    • View Profile
Categories are centered, i want the aligned "left" how?
« on: July 22, 2005, 08:20:55 AM »
Okay, the categories see to be centered and would like them to be "aligned left" so it doesnt look so out of plance, anyone know where about i can change this?

my gallery - http://www.logo-shack.net/renders/index.php


Thanks in advanced!

- Chris

Offline mawenzi

  • 4images Moderator
  • 4images Guru
  • *****
  • Posts: 4.500
    • View Profile
Re: Categories are centered, i want the aligned "left" how?
« Reply #1 on: July 22, 2005, 10:19:55 AM »
hi Chris,

go to : /templates/<your_template>/category_bit.html
and the code for "aligned left" should be ( without any ...center... ) :
Code: [Select]
...
<td>
   <a href="{cat_url}" class="maincat">{cat_name}</a>&nbsp;({num_images})
   {if cat_is_new}<sup class="new">{lang_new}</sup>{endif cat_is_new}
</td>
...
and in your /templates/<your_template>/style.css the code for "aligned left" should be
Code: [Select]
.maincat {
  font-family: Tahoma,Verdana,Arial,Helvetica,sans-serif;
  font-size: 11px;
  font-weight: bold;
  padding-left: 5px;
}

that should it be ...  :wink:

mawenzi
Your first three "must do" before you ask a question ! ( © by V@no )
- please read the Forum Rules ...
- please study the FAQ ...
- please try to Search for your answer ...

You are on search for top 4images MOD's ?
- then please search here ... Mawenzi's Top 100+ MOD List (unsorted sorted) ...

Offline alycium

  • Pre-Newbie
  • Posts: 2
    • View Profile
Re: Categories are centered, i want the aligned "left" how?
« Reply #2 on: July 22, 2005, 10:42:03 AM »
I dont get it, i entered that code and took away the "<center>" stuff and it's still centered.... Can you be more specific?