Page 1 of 1

Gallery mod issue......

Posted: 25 Apr 2010, 01:48
by Bullseye
I have done all the edits for this mod except for the very last one where it says:

Find:

Code: Select all

@import url("colours.css");
Add after:

Code: Select all

@import url("gallery.css");
In styles/prosilver/theme/stylesheet.css

I can't seem to find:

Code: Select all

@import url("colours.css");
Is there a reason for this?

Thanks in advance,


John

ps. here's the link to the mod in question:

http://www.phpbb.com/community/viewtopi ... &t=1825475

Re: Gallery mod issue......

Posted: 25 Apr 2010, 02:26
by cisco007
would this be on the stylesheet.css for a style you were working on, otherwise how is your style showing? since the stylesheet.css is were all the .css files for prosilver are listed! but anyways. what does your stylesheet.css have? you can just add the edit anywhere at the end of the previous @import it doesn't really have to be the one the edit says specially if you have other mods installed!

Re: Gallery mod issue......

Posted: 25 Apr 2010, 02:57
by Bullseye
I can't find any '@imports' in the stylesheet.css file....

Re: Gallery mod issue......

Posted: 25 Apr 2010, 03:08
by cisco007
I know what mod it is, can you post up in between code tags an example of what your prosilver/theme/stylesheet.css has in it!?

Re: Gallery mod issue......

Posted: 25 Apr 2010, 03:46
by Bullseye
I can't post the whole file in text on here as it exceeds the character limit, but here's the the file:

Re: Gallery mod issue......

Posted: 25 Apr 2010, 03:57
by Inner Circle
Do you make the edits directly in the filesystem or through ACP?

anyway, just put the import code for the gallery.css there. it should work

Re: Gallery mod issue......

Posted: 25 Apr 2010, 04:52
by cisco007
wow that is some stylesheet.css, have you added all the .css files edits to this one .css file? :shock:
anyways find:

Code: Select all

/*  phpBB 3.0 Style Sheet
    --------------------------------------------------------------
	Style name:		proSilver
	Based on style:	proSilver (this is the default phpBB 3 style)
	Original author:	subBlue ( http://www.subBlue.com/ )
	Modified by:		
	
	Copyright 2006 phpBB Group ( http://www.phpbb.com/ )
    --------------------------------------------------------------
*/
add the edit after it!

Re: Gallery mod issue......

Posted: 25 Apr 2010, 15:50
by Steve
Bullseye , what style is this stylesheet from ? also noticed your forum is on phpbb3 version 3.0.4 ,make sure any mods you install are compatible.

if @import does not work in the stylesheet add it in the overall_Header.html
find:

Code: Select all

<link href="{T_THEME_PATH}/print.css" rel="stylesheet" type="text/css" media="print" title="printonly" />
add before:

Code: Select all

<link href="{T_THEME_PATH}/gallery.css" rel="stylesheet" rel="stylesheet" type="text/css" media="screen, projection" />