Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Chris

Pages: [1] 2 3 4 5 ... 91
1
Display it where???

2
Discussion & Troubleshooting / Re: help please!!!
« on: June 08, 2005, 08:06:29 PM »

3
If you look at that template now (maybe it was edited after v@no's post) the real problem is the extra opening table tag
Code: [Select]
<table border="0" cellspacing="0" cellpadding="0">
<form method="post" name="jumpbox" action="{url_categories}">
  <table>
    <tr>
      <td>{category_dropdown_selfjump}</td>
    </tr>
  </table>
</form>

Probably should be:
Code: [Select]
<form method="post" name="jumpbox" action="{url_categories}">
<table border="0" cellspacing="0" cellpadding="0">
    <tr>
      <td>{category_dropdown_selfjump}</td>
    </tr>
</table>
</form>

But the orginal problem will still exist.  The table is just not wide enough to hold the content on one line

4
Well the real problem as I see it is that your table width is too small.  You simply cannot fit everything on one line with only 530 pixels to do it.  Try removing the table width and then see if everything lines up.  After that you just have to fiddle with it to get it the way you want it.

5
I read your question, I even looked at your page.  As I said, I didn't understand your question.  And as the only person here who has tried to help you I would hope you would have a little patience in trying to explain what you want.

I stand by what I stated before, your 3 fields and labels are already vertically aligned inside the table row/cell you have on your page.

What I think you are really trying to do is to make them all stay on a single horizontal line?  Right?

Then try adding the nowrap attribute to those table cells.
Code: [Select]
<table width="530" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td nowrap>{category_dropdown_form}</td>
    <td nowrap>{imgsort_dropdown_form}</td>
    <td nowrap>{setperpage_dropdown_form}</td>
  </tr>
</table>

This is just basic HTML editing.  :wink:

6
Discussion & Troubleshooting / Re: Upload pictures via FTP
« on: June 07, 2005, 04:14:12 AM »
Only your hosting provider can tell you that info.  It's most likely NOT the same as your 4images admin user/password

7
That's all I remember from 3 years of high school spanish.   :P

8
Discussion & Troubleshooting / Re: two installation in one server
« on: June 06, 2005, 02:53:20 PM »
I just tested this also and can verify that it works against two CLEAN installs of 4images 1.7.1

9
Gracias a quien haya puesto a disposición este MOD, me ayudó a resolver este problema :)
No hablo español

10
Sind die fixes in der zum Download angebotenen Version jeweils schon eingearbeitet?
Nein, und Ich spreche nicht Deutsches

11
I don't understand what it is you want.  The category drop down form IS already vertically aligned inside your table:
Code: [Select]
<table width="530" border="0" cellspacing="0" cellpadding="0">

12
Discussion & Troubleshooting / Re: It won't let me upload pictures
« on: June 04, 2005, 09:13:38 PM »
The move_uploaded_file error is covered in the error forum here.  Please review that first.

13
No problems for me either.  Your home page logo is 368K, ouch.  You can definitely help by making these pictures more web friendly.  That logo shouldn't have to be any larger than something like 50k

It could also be that when you experienced a slow down, someone else was conducting a heavy download or upload for a different site on the same server.  I've seen that before too

Pages: [1] 2 3 4 5 ... 91