forum.coppermine-gallery.net

Support => cpg1.6.x Support => cpg1.6 themes (visuals) => Topic started by: screamqueen on September 02, 2022, 10:03:04 pm

Title: Upload and Edit files pages are too wide... plz help me
Post by: screamqueen on September 02, 2022, 10:03:04 pm
Upload and edit-files pages are too wide to the right and are visible behind the sidebar.

How to fix it?



Title: Re: Upload and Edit files pages are too wide... plz help me
Post by: KchoPrro on September 21, 2022, 01:14:03 pm
The same thing happens to me, I think they are problems with the theme (I think we use the same one, the MND CPG12). I find that the tables used don't work very well with a side menu. Possibly, with a fixed measure in the table the problem would be solved. I'll stay on the thread in case the solution comes out.

On the other hand, in my case, it is only a problem when uploading a file or editing one, it does not affect me much, I do not really give much importance to this problem.
Title: Upload and Edit files pages are too wide... plz help me
Post by: KchoPrro on October 04, 2022, 08:33:25 pm
Upload and edit-files pages are too wide to the right and are visible behind the sidebar.

How to fix it?

Hi, friend;

I've gone over this issue on my website (we both use the same theme). I have managed to solve it. The problem exists because the width of the description box is too wide and it scrolls everything too much. This can be fixed by adjusting the style in the class that Monica names ".textinput" (line 278 of style.css).

The code is like this:
Code: [Select]
.textinput {
padding-right: 3px;
padding-left: 3px;
border: 1px solid #dedede;
}

Yo he puesto un tope de anchura (tú puedes poner la que te guste más):

Code: [Select]
.textinput {
padding-right: 3px;
padding-left: 3px;
border: 1px solid #dedede;
max-width: 350px
}

Attachment screenshot

It's not a perfect solution, it only works properly if you're viewing the page in full screen. When you reduce the size of the screen, the style is designed to also reduce the content and there comes a time when 350pix maximum is not enough and it overlaps again (but it is better than nothing).

Sorry, I'm not a programmer, that's all I can help you with  :-[.