Author Topic: Showing new images on main page as two rows four coloumn  (Read 5194 times)

0 Members and 1 Guest are viewing this topic.

Offline toroslar

  • Pre-Newbie
  • Posts: 7
    • View Profile
Showing new images on main page as two rows four coloumn
« on: March 10, 2005, 10:54:37 AM »
I wan to Show new images on main page as two rows four coloumn. when I change number of new images on main page , it shows 1 rows . how to show they 1 row on main page... thanks..

Offline Jan

  • Administrator
  • 4images Guru
  • *****
  • Posts: 5.024
    • View Profile
    • 4images - Image Gallery Management System
Re: Showing new images on main page as two rows four coloumn
« Reply #1 on: March 10, 2005, 10:59:55 AM »
Open index.php and search for
Code: [Select]
$num_new_images = $config['image_cells'];and replace with
Code: [Select]
$num_new_images = 8;
$config['image_cells'] = 4;

Jan
Your first three "must do" before you ask a question:
1. Forum rules
2. FAQ
3. Search

Offline bunelul

  • Newbie
  • *
  • Posts: 33
    • View Profile
Re: Showing new images on main page as two rows four coloumn
« Reply #2 on: December 14, 2005, 11:13:59 PM »
Hello

As i was searching on the forum for more than 2 hours for a solution for displaying new images on home page horizontally and i`ve found here the solution:

Code: [Select]
$num_new_images = 10;
$config['image_cells'] = 1;
after this you have to edit your thumbnail_bit.html template to show the list more eye friendly  :D

In fact of this i`ll try to add here few more keywords:

display new images listings horizontally on home page... 

:lol: (At least these words/combinations of words i`ve been using searching and reading 4images forums).

Thanks, Jan for your solution!