forum.coppermine-gallery.net

Support => cpg1.4.x Support => Older/other versions => cpg1.4 themes/skins/templates => Topic started by: Dezdan on December 01, 2005, 10:08:31 am

Title: Project vii Theme: Sideways Scroll
Post by: Dezdan on December 01, 2005, 10:08:31 am
I am having an issue using the theme Project vii. No matter what size I set my browser window to, there is always a bottom scroll bar that scrolls aprox. one inch. No other theme has this issue (that I saw) and I cannot find what is causing this. I believe it to be the menu (more like the table it is in) causing the problem, as the background image 'top_panel_r2_c1.jpg' sticks out that extra inch or so. I am not sure where to start or how to fix this issue. Any suggestions or help?

Thanks,
~Dan
Title: Re: Project vii Theme: Sideways Scroll
Post by: Joachim Müller on December 01, 2005, 10:09:44 am
link?
Title: Re: Project vii Theme: Sideways Scroll
Post by: Dezdan on December 01, 2005, 10:39:08 am
link?
I hope you don't mind but I sent you the link via a PM. I don't like publicizing my site for a few reasons.

~Dan
Title: Re: Project vii Theme: Sideways Scroll
Post by: Joachim Müller on December 01, 2005, 10:44:06 am
I hope you don't mind
I do mind, read my signature. There's no such thing as a "private site" on the internet, unless you password-protect it.
Anyway, check your setting for "Width of the main table (pixels or %)" in coppermine's config.

Joachim
Title: Re: Project vii Theme: Sideways Scroll
Post by: Dezdan on December 01, 2005, 10:54:24 am
I do mind, read my signature.
DOH! Sorry, its been a long day!

There's no such thing as a "private site" on the internet, unless you password-protect it.
Prehaps 'private' was not the correct word. It is not scanned by any search engine bot, there are no links to it anywhere, and the only folks who know about it are my friends whom I have told. That's waht I meant about 'private'.

Anyway, check your setting for "Width of the main table (pixels or %)" in coppermine's config.
It is set to 100%.

Thanks again,
~Dan
Title: Re: Project vii Theme: Sideways Scroll
Post by: Tranz on December 01, 2005, 04:40:35 pm
I had the same problem with my theme, which was based on project vii. I've figured out the culprit is in #SUB_MENU. This seems to get rid of the scrollbar
Code: [Select]
#SUB_MENU {
        padding-left: 20px;
}

Is it OK to commit?
Title: Re: Project vii Theme: Sideways Scroll
Post by: Dezdan on December 01, 2005, 05:09:05 pm
That fixed it, THANKS!

From:
Code: [Select]
#SUB_MENU {
        width:100%;
        padding: 0 20px;
}

To:
Code: [Select]
#SUB_MENU {
        padding-left: 20px;
}

Thanks,
~Dan
Title: Re: Project vii Theme: Sideways Scroll
Post by: Joachim Müller on December 02, 2005, 12:29:47 am
Is it OK to commit?
yes, please go ahead.
Title: Re: Project vii Theme: Sideways Scroll
Post by: carbonturtle on September 30, 2012, 10:28:45 pm
I was glad to discover this dusty old post, because the version of project vii theme I just downloaded from SourceForge today ( cpg1.5.x_theme_project-vii_v1.0.zip ) still has this bug in it.  I guess the fix was never committed?  Anyway, thanks for the solution.  I would commit it myself if I knew how.   :)

~CT~
Title: Re: Project vii Theme: Sideways Scroll
Post by: lurkalot on October 01, 2012, 08:33:09 am

I guess the fix was never committed?  Anyway, thanks for the solution.  I would commit it myself if I knew how.   :)

~CT~

Here's the modified file.  You need to unzip it, and replace this style file in your project-vii theme folder.  Then refresh your browser window to see the change.