[ABD] Supernova (phpBB 3.0.11)

Any abandoned 3.0.x Styles will be moved to this forum.
massimiliano_k
Registered User
Posts: 2
Joined: Sat Jul 28, 2012 5:17 pm

Re: [Release] Supernova (phpBB 3.0.10)

Post by massimiliano_k »

How can I change the color?
I opened the file overall_header.html and I added

Code: Select all

<link rel="stylesheet" href="{T_THEME_PATH}/colours/red.css" type="text/css" />
after this line

Code: Select all

<link href="{T_STYLESHEET_LINK}" rel="stylesheet" type="text/css" media="screen, projection" />
but it doesn't work.

PS: Sorry for my english but I'm italian.
wbxpress
Registered User
Posts: 150
Joined: Wed Mar 21, 2012 1:29 pm
Contact:

Re: [Release] Supernova (phpBB 3.0.10)

Post by wbxpress »

Please update this style to latest 3.0.11.
I tried but it is not working in 3.0.11 board. :(
User avatar
nextgen
Registered User
Posts: 2394
Joined: Mon Jul 26, 2010 10:58 pm
Location: Guatemala
Name: Melvin García
Contact:

Re: [Release] Supernova (phpBB 3.0.10)

Post by nextgen »

wbxpress wrote:Please update this style to latest 3.0.11.
I tried but it is not working in 3.0.11 board. :(
https://area51.phpbb.com/code-changes/3 ... -prosilver

Follow the instructions and apply them to your style.
メルビン・ガルシア • nextgen Solutions

Please do NOT contact for support via PM or email.
ssg2002
Registered User
Posts: 5
Joined: Wed Oct 27, 2010 5:56 am

Re: [Release] Supernova (phpBB 3.0.10)

Post by ssg2002 »

[quote="Boardtalk.net"][/quote]

Hello,

I set the style for your forum Supernova (1.0.3) + (phpBB Gallery - 1.1.6)

On a page of the photo gallery - all displayed very good! - Image

But on the page, nested albums - problem - see link to the photos - Image

Can you please tell me how to fix this little problem?

Thank you for your understanding and cooperation!

Sincerely,
wbxpress
Registered User
Posts: 150
Joined: Wed Mar 21, 2012 1:29 pm
Contact:

Re: [Release] Supernova (phpBB 3.0.10)

Post by wbxpress »

nextgen wrote:
wbxpress wrote:Please update this style to latest 3.0.11.
I tried but it is not working in 3.0.11 board. :(
https://area51.phpbb.com/code-changes/3 ... -prosilver

Follow the instructions and apply them to your style.
Sorry. :(
After struggling for 3 hours I could not managed to install the theme. It is somewhat wired looking. Probably missing some </div> 's.
User avatar
Boardtalk.net
Registered User
Posts: 1244
Joined: Fri Jun 05, 2009 8:12 pm
Location: Ireland
Name: Colette
Contact:

Re: [Release] Supernova (phpBB 3.0.11)

Post by Boardtalk.net »

Updated to latest version 3.0.11




Better late than never :oops: :D
ssg2002
Registered User
Posts: 5
Joined: Wed Oct 27, 2010 5:56 am

Re: [Release] Supernova (phpBB 3.0.11)

Post by ssg2002 »

Boardtalk.net wrote: :oops:
You can solve the problem, which I wrote in the message - Tue Nov 06, 2012 12:12 am :?:
User avatar
Boardtalk.net
Registered User
Posts: 1244
Joined: Fri Jun 05, 2009 8:12 pm
Location: Ireland
Name: Colette
Contact:

Re: [Release] Supernova (phpBB 3.0.11)

Post by Boardtalk.net »

SSG, a direct link to where you are having the problem would help greatly. I can't promise anything as I don't have time to instal the mod onto a test board but will take a look.
metalmaster
Registered User
Posts: 15
Joined: Mon Feb 20, 2012 11:19 pm
Contact:

Re: [Release] Supernova (phpBB 3.0.11)

Post by metalmaster »

User avatar
Boardtalk.net
Registered User
Posts: 1244
Joined: Fri Jun 05, 2009 8:12 pm
Location: Ireland
Name: Colette
Contact:

Re: [Release] Supernova (phpBB 3.0.11)

Post by Boardtalk.net »

metalmaster wrote:I can apply these changes?
http://imageshack.us/photo/my-images/560/supm.jpg/
I suspect these are just general questions and you can find your way around the phpbb code? In reply to your questions, please note the following;
1.) No, the header is full width.
2.) Full width image, that wouldn't be easy because the header is fullwidth.
3.)
- a. Remove box mp? Do you mean the login box? Then if so yes, that's in the overall_header.html
- b. Remover color selector. Yes, that's in the the overall_header.html
- c. Place link into the nav-bar. Yes, that's in the overall_header.html
;)
ssg2002
Registered User
Posts: 5
Joined: Wed Oct 27, 2010 5:56 am

Re: [Release] Supernova (phpBB 3.0.11)

Post by ssg2002 »

Boardtalk.net wrote:SSG, a direct link to where you are having the problem would help greatly. I can't promise anything as I don't have time to instal the mod onto a test board but will take a look.

This problem is not specifically my site! - This is a problem template! But, " if you want to see - please, look the - http://www.my-address.ru/forum/gallery/ ... album_id=2

I hope that You, as a professional, can help me.
User avatar
Boardtalk.net
Registered User
Posts: 1244
Joined: Fri Jun 05, 2009 8:12 pm
Location: Ireland
Name: Colette
Contact:

Re: [Release] Supernova (phpBB 3.0.11)

Post by Boardtalk.net »

ssg2002 wrote:... I hope that You, as a professional, can help me.
:D
I'm not a professional web designer/coder, this is a hobby. ;)
Back to your question...
On the supernova forumlist_body.html we have this piece of code; <!-- IF SCRIPT_NAME eq 'index' or 'viewforum' -->padding-left: 40px;<!-- ENDIF --> and as the Gallery mod has its very own albumlist_body.html the required 40px is not accounted for.

The below solution is not tested on a live Gallery and would appreciate your feedback if it solves the problem.
Open: supernova/template/gallery/albumlist_body.html
Find:

Code: Select all

<dl class="icon" style="background-image: url({albumrow.ALBUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;">
Replace with:

Code: Select all

<dl class="icon" style="background-image: url({albumrow.ALBUM_FOLDER_IMG_SRC}); background-repeat: no-repeat; padding-left: 40px;">
;)
ssg2002
Registered User
Posts: 5
Joined: Wed Oct 27, 2010 5:56 am

Re: [Release] Supernova (phpBB 3.0.11)

Post by ssg2002 »

Boardtalk.net wrote:
ssg2002 wrote:... I hope that You, as a professional, can help me.
;)
The idea is good, but the string I don't have. In the file have this line:

Code: Select all

	<!-- IF not albumrow.S_IS_CAT -->
		<li class="row">
			<dl class="icon sn-index-icon" style="background-image: url({albumrow.ALBUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;<!-- IF SCRIPT_NAME eq 'index' --> padding-left: 40px;<!-- ENDIF -->">
				<dt title="{albumrow.ALBUM_FOLDER_IMG_ALT}" style="padding-top: 0.6em">
					<!-- IF albumrow.ALBUM_IMAGE --><span class="forum-image"><img src="{T_IMAGES_PATH}{albumrow.ALBUM_IMAGE}" alt="{albumrow.ALBUM_NAME}" /></span><!-- ENDIF -->
					<a href="{albumrow.U_VIEWALBUM}" class="forumtitle"<!-- IF S_PERSONAL_GALLERY and albumrow.ALBUM_COLOUR --> style="color: {albumrow.ALBUM_COLOUR};"<!-- ENDIF -->>{albumrow.ALBUM_NAME}</a><br />
					{albumrow.ALBUM_DESC}
					<!-- IF albumrow.MODERATORS -->
						<br /><strong>{albumrow.L_MODERATOR_STR}:</strong> {albumrow.MODERATORS}
					<!-- ENDIF -->
					<!-- IF albumrow.SUBALBUMS and albumrow.S_LIST_SUBALBUMS --><br /><strong>{albumrow.L_SUBALBUM_STR}</strong> {albumrow.SUBALBUMS}<!-- ENDIF -->
				</dt>
				<dd class="posts">{albumrow.IMAGES} <!-- IF albumrow.UNAPPROVED_IMAGES --> + <span class="reported-images-number">{albumrow.UNAPPROVED_IMAGES}</span><!-- ENDIF --> <dfn>{L_IMAGES}</dfn></dd>
				<dd class="g_lastimage" style="padding-left: 5px;"><span>
					<!-- IF albumrow.LAST_IMAGE_TIME -->
					<!-- IF albumrow.UC_FAKE_THUMBNAIL --><span style="float: left; text-align: center; width: {FAKE_THUMB_SIZE}px; padding-right: 10px;">{albumrow.UC_FAKE_THUMBNAIL}</span><!-- ENDIF -->
					<dfn>{L_LAST_IMAGE}</dfn> {albumrow.UC_IMAGE_NAME}<br />
					{L_POST_BY_AUTHOR} {albumrow.LAST_USER_FULL} {albumrow.UC_LASTIMAGE_ICON}<br />
					{albumrow.LAST_IMAGE_TIME}<!-- ELSE -->{L_NO_IMAGES}<!-- ENDIF --></span>
				</dd>
			</dl>
		</li>
	<!-- ENDIF -->
is such a line:

Code: Select all

			<dl class="icon sn-index-icon" style="background-image: url({albumrow.ALBUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;<!-- IF SCRIPT_NAME eq 'index' --> padding-left: 40px;<!-- ENDIF -->">
How to fix this line? :?:
User avatar
Boardtalk.net
Registered User
Posts: 1244
Joined: Fri Jun 05, 2009 8:12 pm
Location: Ireland
Name: Colette
Contact:

Re: [Release] Supernova (phpBB 3.0.11)

Post by Boardtalk.net »

ssg2002 wrote:

Code: Select all

			<dl class="icon sn-index-icon" style="background-image: url({albumrow.ALBUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;<!-- IF SCRIPT_NAME eq 'index' --> padding-left: 40px;<!-- ENDIF -->">
How to fix this line? :?:
Try this then;

Find:

Code: Select all

<dl class="icon sn-index-icon" style="background-image: url({albumrow.ALBUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;<!-- IF SCRIPT_NAME eq 'index' --> padding-left: 40px;<!-- ENDIF -->">
Replace with:

Code: Select all

<dl class="icon sn-index-icon" style="background-image: url({albumrow.ALBUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;<!-- IF SCRIPT_NAME eq 'index' or 'album' --> padding-left: 40px;<!-- ENDIF -->">
ssg2002
Registered User
Posts: 5
Joined: Wed Oct 27, 2010 5:56 am

Re: [Release] Supernova (phpBB 3.0.11)

Post by ssg2002 »

Boardtalk.net wrote:Replace with:

Code: Select all

<dl class="icon sn-index-icon" style="background-image: url({albumrow.ALBUM_FOLDER_IMG_SRC}); background-repeat: no-repeat;<!-- IF SCRIPT_NAME eq 'index' or 'album' --> padding-left: 40px;<!-- ENDIF -->">
Everything turned out!

Thank you!
Locked

Return to “[3.0.x] Abandoned Styles”