[CDB] Silver_Xmas_Modern 3.2.4 (3.2.1 / 3.2.2 / 3.2.3 New)

For style authors to post and receive feedback on 3.2.x styles still in development. Any development styles you wish to use on your live board should be installed with caution!
User avatar
</Solidjeuh>
Registered User
Posts: 1788
Joined: Tue Mar 29, 2016 3:45 am
Location: Aalst (Belgium)
Name: Andy Dm
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by </Solidjeuh> »

Why are the css files loaded via the template instead of via the stylesheet.css?
It gives problems with a few extensions that uses pop-up windows (simple-header).
Yes, in this style they are also loaded via simple_header.html, but the pop-up on my forum is loading without css...
Loading them via stylesheet.css fixed that problem.

Code: Select all

<link href="{ROOT_PATH}styles/prosilver/theme/normalize.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/base.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/utilities.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/common.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/links.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/content.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/buttons.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/cp.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/forms.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/icons.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/colours.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/responsive.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
Image
User avatar
Tastenplayer
Registered User
Posts: 999
Joined: Thu Jul 03, 2014 9:20 pm
Location: Village in the middle of Switzerland
Name: Jutta Koliofotis
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by Tastenplayer »

That's what phpbb says you do. Only one style.css and just that inserted in the template. Preferably you should create a child style and not all files in the style.
Since these are child styles from Prosilver, there should be no extension problems.
Read the Style submission policy :)
Method 4. Detailed overriding link components in <head>

This method works the same way as Method 3, but instead of including the parent's (prosilver) stylesheet.css, we load the various CSS assets directly (without relying on @import) from the overall_header.html template of your new style. This allows for greater control of which files to include/exclude.

From a technical perspective, this is the best method to use.


Pros

Complete control over which assets to load (and in which order)
No use of CSS @import at all (this is preferable)
Possible to deduplicate everything

I'm definitely not a friend of this variant either. In the style Graphite, which I got as a present, it was also done like this.
Unfortunately I can hardly change that anymore, otherwise I would have to rewrite the whole style. And evenly, one should make it actually starting from 2.x also only in such a way.
More of my styles you can find in my phpBB Style Board & More
Be the best version of yourself rather than a bad copy of someone else!
Excuse me for my English, but I learned the language by speaking to people and not at school.
๐ŸŽจ All my styles are updated to 3.3.8 and can be downloaded here
User avatar
</Solidjeuh>
Registered User
Posts: 1788
Joined: Tue Mar 29, 2016 3:45 am
Location: Aalst (Belgium)
Name: Andy Dm
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by </Solidjeuh> »

Then why is the .css not loaded in simple_header? Works on all styles, except on this Silver_Xmas_Modern
I use this for an image upload extension:

simple_header.html

Code: Select all

<!DOCTYPE html>
<html dir="{{ S_CONTENT_DIRECTION }}" lang="{{ S_USER_LANG }}">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1" />
{{ META }}
<title>{% if UNREAD_NOTIFICATIONS_COUNT %}({{ UNREAD_NOTIFICATIONS_COUNT }}) {% endif %}{% if not S_VIEWTOPIC and not S_VIEWFORUM %}{{ SITENAME }} - {% endif %}{% if S_IN_MCP %}{{ lang('MCP') }} - {% elseif S_IN_UCP %}{{ lang('UCP') }} - {% endif %}{{ PAGE_TITLE }}{% if S_VIEWTOPIC or S_VIEWFORUM %} - {{ SITENAME }}{% endif %}</title>



{% if S_ALLOW_CDN %}
<script>
	WebFontConfig = {
		google: {
			families: ['Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese']
		}
	};

	(function(d) {
		var wf = d.createElement('script'), s = d.scripts[0];
		wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js';
		wf.async = true;
		s.parentNode.insertBefore(wf, s);
	})(document);
</script>
{% endif %}
<link href="{{ T_FONT_AWESOME_LINK }}" rel="stylesheet">
<link href="{{ T_STYLESHEET_LINK }}" rel="stylesheet">
<link href="{{ T_STYLESHEET_LANG_LINK }}" rel="stylesheet">

{% if S_CONTENT_DIRECTION eq 'rtl' %}
	<link href="{{ T_THEME_PATH }}/bidi.css?assets_version={{ T_ASSETS_VERSION }}" rel="stylesheet">
{% endif %}

{% if S_PLUPLOAD %}
	<link href="{{ T_THEME_PATH }}/plupload.css?assets_version={{ T_ASSETS_VERSION }}" rel="stylesheet">
{% endif %}

{% if S_COOKIE_NOTICE %}
	<link href="{{ T_ASSETS_PATH }}/cookieconsent/cookieconsent.min.css?assets_version={{ T_ASSETS_VERSION }}" rel="stylesheet">
{% endif %}

<!--[if lte IE 9]>
	<link href="{{ T_THEME_PATH }}/tweaks.css?assets_version={{ T_ASSETS_VERSION }}" rel="stylesheet">
<![endif]-->

{% EVENT overall_header_head_append %}

{{ definition.STYLESHEETS }}

{% EVENT overall_header_stylesheets_after %}
</head>

<body id="phpbb" class="nojs {{ S_CONTENT_DIRECTION }} {{ BODY_CLASS }}">

{% EVENT simple_header_body_before %}

<div id="wrap" class="wrap">
	<a id="top" class="top-anchor" accesskey="t"></a>
	<div id="page-body" class="page-body" role="main">
simple_footer.html

Code: Select all

	</div>
                
	<div class="copyright" role="contentinfo">{{ CREDIT_LINE }}
		{% if TRANSLATION_INFO %}<br />{{ TRANSLATION_INFO }}{% endif %}
		{% if DEBUG_OUTPUT %}<br />{{ DEBUG_OUTPUT }}{% endif %}
	</div>

	<div id="darkenwrapper" class="darkenwrapper" data-ajax-error-title="{{ lang('AJAX_ERROR_TITLE') }}" data-ajax-error-text="{{ lang('AJAX_ERROR_TEXT') }}" data-ajax-error-text-abort="{{ lang('AJAX_ERROR_TEXT_ABORT') }}" data-ajax-error-text-timeout="{{ lang('AJAX_ERROR_TEXT_TIMEOUT') }}" data-ajax-error-text-parsererror="{{ lang('AJAX_ERROR_TEXT_PARSERERROR') }}">
		<div id="darken" class="darken">&nbsp;</div>
	</div>
	<div id="loading_indicator" class="loading_indicator"></div>

	<div id="phpbb_alert" class="phpbb_alert" data-l-err="{{ lang('ERROR') }}" data-l-timeout-processing-req="{{ lang('TIMEOUT_PROCESSING_REQ') }}">
		<a href="#" class="alert_close">
			<i class="icon fa-times-circle fa-fw" aria-hidden="true"></i>
		</a>
		<h3 class="alert_title"></h3><p class="alert_text"></p>
	</div>
	<div id="phpbb_confirm" class="phpbb_confirm phpbb_alert">
		<a href="#" class="alert_close">
			<i class="icon fa-times-circle fa-fw" aria-hidden="true"></i>
		</a>
		<div class="alert_text"></div>
	</div>
</div>

<script type="text/javascript" src="{{ T_JQUERY_LINK }}"></script>
{% if S_ALLOW_CDN %}<script type="text/javascript">window.jQuery || document.write('\x3Cscript src="{{ T_ASSETS_PATH }}/javascript/jquery.min.js?assets_version={{ T_ASSETS_VERSION }}">\x3C/script>');</script>{% endif %}
<script type="text/javascript" src="{{ T_ASSETS_PATH }}/javascript/core.js?assets_version={{ T_ASSETS_VERSION }}"></script>
{% INCLUDEJS 'forum_fn.js' %}
{% INCLUDEJS 'ajax.js' %}

{% EVENT simple_footer_after %}

{{ definition.SCRIPTS }}

</body>
</html>
User avatar
Tastenplayer
Registered User
Posts: 999
Joined: Thu Jul 03, 2014 9:20 pm
Location: Village in the middle of Switzerland
Name: Jutta Koliofotis
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by Tastenplayer »

I don't understand why this isn't working either.
I will have a look at the style again, maybe I made a mistake somewhere. This style is still in the validation queue.

This seems to be the case because I inserted the same code in the overall_header as well as simple_header.htm
code for simple_header.html should be:

Code: Select all

<link href="{ROOT_PATH}styles/prosilver/theme/normalize.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/base.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/utilities.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/common.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/links.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/content.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/buttons.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/cp.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/forms.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/icons.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/colours.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/responsive.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">



<link href="{T_FONT_AWESOME_LINK}" rel="stylesheet">
<link href="{T_STYLESHEET_LINK}" rel="stylesheet">
<link href="{T_STYLESHEET_LANG_LINK}" rel="stylesheet">

<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
	<link href="{ROOT_PATH}styles/prosilver/theme/bidi.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<!-- ENDIF -->

<!--[if lte IE 8]>
	<link href="{ROOT_PATH}styles/prosilver/theme/tweaks.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<![endif]-->
see here: http://forumstyling.bplaced.net/viewtop ... p=409#p409

Or maybe you still have to change something for 3.2.3?
More of my styles you can find in my phpBB Style Board & More
Be the best version of yourself rather than a bad copy of someone else!
Excuse me for my English, but I learned the language by speaking to people and not at school.
๐ŸŽจ All my styles are updated to 3.3.8 and can be downloaded here
User avatar
Mannix_
Registered User
Posts: 1834
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by Mannix_ »

Tastenplayer wrote: โ†‘Mon Nov 05, 2018 4:37 pm I don't understand why this isn't working either.
I will have a look at the style again, maybe I made a mistake somewhere. This style is still in the validation queue.

This seems to be the case because I inserted the same code in the overall_header as well as simple_header.htm
code for simple_header.html should be:

Code: Select all

<link href="{ROOT_PATH}styles/prosilver/theme/normalize.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/base.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/utilities.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/common.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/links.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/content.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/buttons.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/cp.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/forms.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/icons.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/colours.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/responsive.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">



<link href="{T_FONT_AWESOME_LINK}" rel="stylesheet">
<link href="{T_STYLESHEET_LINK}" rel="stylesheet">
<link href="{T_STYLESHEET_LANG_LINK}" rel="stylesheet">

<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
	<link href="{ROOT_PATH}styles/prosilver/theme/bidi.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<!-- ENDIF -->

<!--[if lte IE 8]>
	<link href="{ROOT_PATH}styles/prosilver/theme/tweaks.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<![endif]-->
You can simplify most of this by just adding

Code: Select all

<link href="{ROOT_PATH}styles/prosilver/theme/stylesheet.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
instead of

Code: Select all

<link href="{ROOT_PATH}styles/prosilver/theme/normalize.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/base.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/utilities.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/common.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/links.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/content.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/buttons.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/cp.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/forms.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/icons.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/colours.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/responsive.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
Nice work btw :)
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
User avatar
Tastenplayer
Registered User
Posts: 999
Joined: Thu Jul 03, 2014 9:20 pm
Location: Village in the middle of Switzerland
Name: Jutta Koliofotis
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by Tastenplayer »

Thanks Mannix_,
But look at this: https://www.phpbb.com/styles/create/

So that it is clear once and for all
Why are the css files loaded via the template instead of via the stylesheet.css?
Because this is not the recommended/desired method.
Besides: Cons: Relative path @import rules are a potential security risk! (avoid if possible)
<link href="{ROOT_PATH}styles/prosilver/theme/stylesheet.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
Note: Although {T_SUPER_TEMPLATE_NAME} is still supported, it only traverses the styles tree 1 level. So it isn't suitable for use in complex inheritance situations.
Note: Using both @import rules and regular CSS rules in the same file is not advised.

Code: Select all

Method 4. Detailed overriding link components in <head>
From a technical perspective, this is the best method to use. :)

Note: But you don't have to insert exactly the same dates in the overall_header.html and in the simple_header.html, which I did unfortunately. Therefore there might have been some problems. http://forumstyling.bplaced.net/viewtop ... t=284#p409

Remark: If, after correction of the data in the simple_header.html, this should cause such a problem with an extension, the problem seems to be due to the extension and not to this style(It remains to be seen what else is criticized in the validation, apart from the error in simple_header.html).
In my testforum anyway, all extensions work with this style! For some, you only need to make color and background adjustments. Because the font color and background color of this style are not uniform.
Tested Extensions:

Code: Select all

No Custom Profile for guests 	1.0.2 	Hides the custom profile fields for guests

Red title for new topic and new reply 	1.0.3 	red title for new topic and new reply

About us 	2.1.2 	About us is an extension which adds to phpBB 3.2 an about us or legal notice-page, where you can add your contact details and more.

Browser & OS in Viewtopic 	1.0.1 	This extension shows browser icon and OS icon in viewtopic.

System Info 	1.0.0 	Displays System Info on the boards index page.

Who Visited This Topic 	1.0.5 	Shows the users who have visited a topic and the times they have visited.

Large Font 	3.2.0 	Allows the user to increase the font size up to ~400% of the default and/or make all the font bold. For phpBB 3.2.x only

Quoted Images as Thumbnails 	1.0.1 	Shrinks quoted images down to a height of 100 pixels while maintaining the aspect ratio.

Calendar 	0.9.1 	Calendar for phpBB >=3.2.0

easy language change 	0.2.0

MP4-Video 	0.1.0 	Video

Change Post Time 	1.0.1 	Adds the option for a moderator to change the posting date and time of a post.

Better Prompt BBCodes 	0.0.2 	This Extension adds a new Prompt for BBCodes.

Board online time 	0.2.0 	Displays on index page a string that shows in Years, Months, Days the length of time your board has been online.

Style Changer 	2.3.0 	Adds a quick stylechanger to the board

viewlegend 	2.1.9 	Set a new site with a big iconlegend to your board

Board Announcements 	1.0.6 	An extension which allows you to create board-wide announcements for your phpBB forum

Collapsible Forum Categories 	1.0.3 	An extension for phpBB that allows visitors to collapse and minimise forum categories with a simple click.

Pages 	2.0.2 	An extension which allows you to add static pages to your phpBB forum

VigLink 	1.0.2 	The VigLink extension for phpBB makes it possible to earn revenue, without any change to the user experience, when users post and follow links to commercial sites.

phpBB.de - External Image as Link 	1.2.0 	Displays every image as a link, which is included with [img] bbcode and not hosted with the own board.

24 hour activity stats 	1.0.9 	Extension lists of all registered users who have visited the board in the last 24 hours as well as lists stats on the number of new posts, new topics and new users within the last 24 hours

Birthday Cake 	1.0.2 	This Extension will allow a birthday cake to appear when viewing a topic if the user had inputted month and birthday and it is their birthday

Contact Admin 	1.1.4 	This form allows guests and/or registered users to either send an email to admins or to either send a PM or make a Post in a designated forum. It also overrides the default contact admin link found on the forum. A port of the phpBB 3.0.x mod โ€œContact Board Adminnistrationโ€

External Links Open in New Window 	1.0.6 	Uses jQuery to force external links to open in a new window

Hide Bots 	1.0.2 	Hides robots in the Who is online stats to all but those who are administrators

Hide Username 	1.0.0 	This Extension hides usernames throughout the forum to guests

National Flags 	2.1.6 	Allows a user to be able to choose a national flag and have a top (those with the most users selecting the flag) number of flags display on the index page of a phpBB forum. Header is link to a listing of all users of a flag. Clicking on user count of the flag displays the users that have that flag set. This extension requires at least phpBB version 3.1.4-RC1.

s9e/mediaembed 	20170724 	Embed third-party content in your phpBB forum

Active Extensions List 	1.0.1 	Shows total number of active extensions installed in the forum statistics with a link to a new page to a list of the installed extensions with their versions and descriptions.

Lightbox 	2.0.0 	Lightbox for phpBB can resize posted images to a maximum set height/width and display them full-screen in an elegant Lightbox overlay effect.

Topic Preview 	2.3.0 	A phpBB extension that displays a short excerpt of text from the first post in a tooltip while the mouse hovers over a topicโ€™s title.

MySQLDumper im ACP und Index 	0.1.3 	Integriert den MySQLDumper im ACP und Index. Zugriff nur fรผr Administratoren.

Advent Inducement Calender 	1.1.0 

Mark forums read 	0.1.0 

Header Banner 	3.2.2-RC2

Privacy policy 	2.1.0-rc6 
Last edited by Tastenplayer on Tue Nov 06, 2018 2:27 pm, edited 2 times in total.
More of my styles you can find in my phpBB Style Board & More
Be the best version of yourself rather than a bad copy of someone else!
Excuse me for my English, but I learned the language by speaking to people and not at school.
๐ŸŽจ All my styles are updated to 3.3.8 and can be downloaded here
User avatar
Mannix_
Registered User
Posts: 1834
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by Mannix_ »

Tastenplayer wrote: โ†‘Tue Nov 06, 2018 1:20 pm Thanks Mannix_,
But look at this: https://www.phpbb.com/styles/create/
Duly noted. :)
</Solidjeuh> wrote: โ†‘Mon Nov 05, 2018 2:41 pm Why are the css files loaded via the template instead of via the stylesheet.css?
It gives problems with a few extensions that uses pop-up windows (simple-header).
Yes, in this style they are also loaded via simple_header.html, but the pop-up on my forum is loading without css...
Loading them via stylesheet.css fixed that problem.
What extension is that? just wanna test something :)
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
User avatar
</Solidjeuh>
Registered User
Posts: 1788
Joined: Tue Mar 29, 2016 3:45 am
Location: Aalst (Belgium)
Name: Andy Dm
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by </Solidjeuh> »

Mannix_ wrote: โ†‘Tue Nov 06, 2018 2:15 pm What extension is that? just wanna test something :)
This one: https://we.tl/t-kxmF4xG3Cy
User avatar
Mannix_
Registered User
Posts: 1834
Joined: Sun Oct 25, 2015 2:56 pm
Name: Matt
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by Mannix_ »

</Solidjeuh> wrote: โ†‘Tue Nov 06, 2018 2:37 pm
Mannix_ wrote: โ†‘Tue Nov 06, 2018 2:15 pm What extension is that? just wanna test something :)
This one: https://we.tl/t-kxmF4xG3Cy
So I discovered what was wrong. I tested this extension with the style and it actually works well kinda works
broken.png
. The thing is the extension reads it's own simple_footer.html file located inside ext/imageupload/style/prosilver/template folder not the one in the actual style. So to fix it you would have to create the folder named after the style (Silver_Xmas_Modern) in the extension style folder and copy the simple_footer.html from the style folder to the ext/imageupload/style/Silver_Xmas_Modern/template folder. After that you will get this
fixed.png
Did I helped You? Consider a donation.
New version of phpBB has been released? My styles aren't validated for it yet? Check my page for the latest downloads!
User avatar
</Solidjeuh>
Registered User
Posts: 1788
Joined: Tue Mar 29, 2016 3:45 am
Location: Aalst (Belgium)
Name: Andy Dm
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by </Solidjeuh> »

Hmzzzz ok thank you, I will try that this evening.
User avatar
Talk19Zehn
Registered User
Posts: 842
Joined: Tue Aug 09, 2011 1:10 pm
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by Talk19Zehn »

simple_header.html

Hello Tastenplayer, okay one next step for a Child(-style): If you have used the content of the video and you want to apply the corrections according from the correction contribution, ===> I missing at this moment ===>
<! - DEFINE $ POPUP = 1 ->
At least that's what I see, and I think that's what keeps this approach going, because this section was mistakenly replaced (entry is removed from the page) in this tutorial = video before. And this mistake was unfortunately not corrected in the message contribution here - .... ?

BTW: In the context - would be right in my approach:

Code: Select all

<!DOCTYPE html>
<html dir="{S_CONTENT_DIRECTION}" lang="{S_USER_LANG}">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1" />
{META}
<title>{SITENAME} &bull; <!-- IF S_IN_MCP -->{L_MCP} &bull; <!-- ELSEIF S_IN_UCP -->{L_UCP} &bull; <!-- ENDIF -->{PAGE_TITLE}</title>

<!-- IF S_ALLOW_CDN -->
<script>
	WebFontConfig = {
		google: {
			families: ['Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&subset=cyrillic,cyrillic-ext,greek,greek-ext,latin-ext,vietnamese']
		}
	};

	(function(d) {
		var wf = d.createElement('script'), s = d.scripts[0];
		wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.5.18/webfont.js';
		wf.async = true;
		s.parentNode.insertBefore(wf, s);
	})(document);
</script>
<!-- ENDIF -->

<link href="{ROOT_PATH}styles/prosilver/theme/normalize.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/base.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/utilities.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/common.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/links.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/content.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/buttons.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/cp.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/forms.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/icons.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/colours.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<link href="{ROOT_PATH}styles/prosilver/theme/responsive.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">

<link href="{T_FONT_AWESOME_LINK}" rel="stylesheet">
<link href="{T_STYLESHEET_LINK}" rel="stylesheet">
<link href="{T_STYLESHEET_LANG_LINK}" rel="stylesheet">

<!-- IF S_CONTENT_DIRECTION eq 'rtl' -->
	<link href="{ROOT_PATH}styles/prosilver/theme/bidi.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<!-- ENDIF -->

<!--[if lte IE 8]>
	<link href="{ROOT_PATH}styles/prosilver/theme/tweaks.css?assets_version={T_ASSETS_VERSION}" rel="stylesheet">
<![endif]-->

<!-- DEFINE $POPUP = 1 -->

<!-- EVENT simple_header_head_append -->

{$STYLESHEETS}

<!-- EVENT simple_header_stylesheets_after -->

</head>

<body id="phpbb" class="simple nojs {S_CONTENT_DIRECTION} {BODY_CLASS}">

<!-- EVENT simple_header_body_before -->

<div id="wrap" class="wrap">
	<a id="top" class="top-anchor" accesskey="t"></a>
	<div id="page-body" class="page-body" role="main">


Maybe it helps further ... good luck ;) :) and best regards for all works, thank you for your ideas ๐Ÿ‘
Best regards
phpBB3 Designs - My own works: Stylearea Ongray-Designs, Adventinducement-Calendar for phpBB
User avatar
Tastenplayer
Registered User
Posts: 999
Joined: Thu Jul 03, 2014 9:20 pm
Location: Village in the middle of Switzerland
Name: Jutta Koliofotis
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by Tastenplayer »

Hello Talk19zehn, nice to read from you! ๐Ÿ™‹
Yes I will take a closer look, and correct this error.

Unfortunately the style has been in the validation queue with these errors for some time now.
I shouldn't have made any mistakes. Time is getting short!
More of my styles you can find in my phpBB Style Board & More
Be the best version of yourself rather than a bad copy of someone else!
Excuse me for my English, but I learned the language by speaking to people and not at school.
๐ŸŽจ All my styles are updated to 3.3.8 and can be downloaded here
User avatar
Tastenplayer
Registered User
Posts: 999
Joined: Thu Jul 03, 2014 9:20 pm
Location: Village in the middle of Switzerland
Name: Jutta Koliofotis
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by Tastenplayer »

Hello Andy Dm
I have now corrected this according to Talk19zehn. Try this file https://www.forum.my-tastenworld.ch/dow ... hp?id=2210
If the assumption of Talk19zehn is correct, it should work with your Ext. now without any problems!
More of my styles you can find in my phpBB Style Board & More
Be the best version of yourself rather than a bad copy of someone else!
Excuse me for my English, but I learned the language by speaking to people and not at school.
๐ŸŽจ All my styles are updated to 3.3.8 and can be downloaded here
User avatar
</Solidjeuh>
Registered User
Posts: 1788
Joined: Tue Mar 29, 2016 3:45 am
Location: Aalst (Belgium)
Name: Andy Dm
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by </Solidjeuh> »

Mannix_ wrote: โ†‘Tue Nov 06, 2018 3:34 pm
The thing is the extension reads it's own simple_footer.html file located inside ext/imageupload/style/prosilver/template folder not the one in the actual style. So to fix it you would have to create the folder named after the style (Silver_Xmas_Modern) in the extension style folder and copy the simple_footer.html from the style folder to the ext/imageupload/style/Silver_Xmas_Modern/template folder. After that you will get this fixed.png
[/quote]
Yeps that's working!
Tastenplayer wrote: โ†‘Wed Nov 07, 2018 3:57 pm Hello Andy Dm
I have now corrected this according to Talk19zehn. Try this file https://www.forum.my-tastenworld.ch/dow ... hp?id=2210
If the assumption of Talk19zehn is correct, it should work with your Ext. now without any problems!
No sorry, still the same

Image
User avatar
Tastenplayer
Registered User
Posts: 999
Joined: Thu Jul 03, 2014 9:20 pm
Location: Village in the middle of Switzerland
Name: Jutta Koliofotis
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by Tastenplayer »

No idea why this works with the old method, in the stylesheet, and not with this, the recommended method. Very strange!
Maybe you should add the simple_footer to the overall_header as well, but this is not done.
But mainly it works for you now.
More of my styles you can find in my phpBB Style Board & More
Be the best version of yourself rather than a bad copy of someone else!
Excuse me for my English, but I learned the language by speaking to people and not at school.
๐ŸŽจ All my styles are updated to 3.3.8 and can be downloaded here
Locked

Return to โ€œ[3.2.x] Styles in Developmentโ€