[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
Tastenplayer
Registered User
Posts: 999
Joined: Thu Jul 03, 2014 9:20 pm
Location: Village in the middle of Switzerland
Name: Jutta Koliofotis
Contact:

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

Post by Tastenplayer »

I tried to adapt my Christmas style to the public.
Some link colors were wrong, so I had to change that. I hope it's true everywhere!

The style is actually released, however, I could not fix some bugs in the css.
This is why I set in here as RC.

It is a very simple silver, white and light black Xmas Style, without glimmer.
He has red hover effects also in posting profile
The header image / banner is fully responsive
In the style displays the Santa no avatar
In the contrib folder there are additional backgrounds and favicons

Author:Tastenplayer
Inherits from style: prosilver (Child Style)
Style Version: 3.2.4
phpBB version: 3.2.4
Demo: https://www.forum.my-tastenworld.ch/index.php
Download: https://www.forum.my-tastenworld.ch/vie ... 115#p12115

Screenshots:
silver_xmas_3.2.3.2.jpg
headerklein.jpg
the extensions shown in the demo are not included in the style

Note: I removed the header images from the contrib folder. They are free for private and commercial use without attribution. But a direct transfer is definitely not always allowed. Although they are offered everywhere in the net.
Last edited by Tastenplayer on Sun Nov 25, 2018 11:57 pm, edited 20 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
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.1_d

Post by Tastenplayer »

Sorry there was a little mistake
In line 601 you must insert

Code: Select all

.copyright a {
  color: #C4C4C4;
}
because in some ext. the copyright will not be shown correctly
The download is updated.

I was alerted to a stupid mistake.
Of course, the style folder must be called

Code: Select all

Silver_Xmas_Modern
and not

Code: Select all

Silver_Xmas_Modern_3.2.1_d


I have updated the download - sorry!
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
noth
Registered User
Posts: 2528
Joined: Fri Jan 07, 2005 7:10 pm
Location: North Surrey
Contact:

Re: [RC] Silver_Xmas_Modern_3.2.1_d

Post by noth »

I do like the style, for one thing its a great refreshing new Xmas style and it works in .3.2

by the way are you familar with the Board Announcements Ext?

although this style continues to function WITH that ext in use and no errors, we could really do with a 'SilverXmas body' for that ext

I know this is beyond the scope of installing a style, that cannot reach through to other exts like Board Announcement but could you reply with the code please? :D thanks for a great Xmas style
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.1_d

Post by Tastenplayer »

Sorry I did not have a computer and did not see it until tonight. Than first I had to install this ext. Because I have the newsblock mini ext. installed by Waldkatze instead. I did not know that this ext is basically the same thing. And also has a shutdown function for the user :-)

Code: Select all

#phpbb_announcement (boardannouncement.css 2{    
    font-weight: bold;
    color: #3C3C3C;
    background: #eeeeee;
    background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 75%, #cccccc 100%);
    background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 75%,#cccccc 100%);
    background: linear-gradient(to bottom, #eeeeee 0%,#cccccc 75%,#cccccc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 );
    border: 2px solid #F4F4F4;
    border-radius: 2px;
}

Code: Select all

#phpbb_announcement div 11 {
    font-size: 1.1em;
    line-height: 1.35em;
}
xmas announcement.jpg
xmas announcement.jpg (82.69 KiB) Viewed 3201 times
It had also tree color mistakes in the search function

Code: Select all

.search .postprofile a {
	color: #1F1F1F;
}

.search .postprofile a:hover {
	color: #D20000;
}

Code: Select all

.search.post.bg1 a.arrow-right {
	color: #1F1F1F;
}

.search.post.bg2 a.arrow-right {
	color: #1F1F1F;
}

.search.post.bg1 a.arrow-right:hover {
	color: #D20000;
}

.search.post.bg2 a.arrow-right:hover {
	color: #D20000;
}

Code: Select all

.arrow-right .icon {
    float: right;
    color: #BF0000 !important;
}
I installed the announcement extension in the copy of my liveboard
The complete code for the boardannouncements.css is that:

Code: Select all

/* style the announcement banner */
#phpbb_announcement {
	background-color: #eeeeee;
	background: -moz-linear-gradient(top, #eeeeee 0%, #cccccc 75%, #cccccc 100%);
	background: -webkit-linear-gradient(top, #eeeeee 0%,#cccccc 75%,#cccccc 100%);
	background: linear-gradient(to bottom, #eeeeee 0%,#cccccc 75%,#cccccc 100%);	
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eeeeee', endColorstr='#cccccc',GradientType=0 );
	border: 5px double #3E3E3E;
	border-radius: 2px;
	margin: 4px -1px 5px -1px;
	padding: 10px;
}

/* zero out any text margins and scroll any overflow */
#phpbb_announcement div {
	font-size: 1.1em;
	line-height: 1.35em;
	overflow-x: auto;
	overflow: hidden;
	margin: 0;
}

/* make posted images responsive */
#phpbb_announcement .postimage {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	max-width: 100%;
}

/* style the close button */
#phpbb_announcement .close {
	background: transparent url('images/close.png') no-repeat 0 0;
	opacity: 0.6;
	float: right;
	width: 12px;
	height: 12px;
	margin: 0 0 0 4px;
}

/* reposition close button for right to left languages */
.rtl #phpbb_announcement .close {
	float: left;
	margin: 0 4px 0 0;
}

/* hide close button on desktops by default */
.notouch #phpbb_announcement .close {
	opacity: 0;
	transition: opacity 0.5s;
}

/* display the close button on mouse-over of the banner */
.notouch #phpbb_announcement:hover .close {
	opacity: 0.6;
}

/* fix for lists, force them to display inside containing div */
#phpbb_announcement ul,
#phpbb_announcement ol {
	margin-left: 20px;
}

.rtl #phpbb_announcement ul,
.rtl #phpbb_announcement ol {
	margin-right: 20px;
	margin-left: 0;
}

/* clear floats */
.clearfix:after {
	display: block;
	visibility: hidden;
	clear: both;
	height: 0;
	content: '.';
}
Last edited by Tastenplayer on Mon Oct 01, 2018 9:45 am, edited 1 time 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
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.1_d

Post by Tastenplayer »

I will definitely test the style again in 3.2.2 and submit it for validation. However, there is no hurry with a Christmas style.
First, I have to finish the other two styles(Blackfog and Modern with wrap an forabg borders).
Development status of all my styles can be seen here https://www.forum.my-tastenworld.ch/viewforum.php?f=207
Styles are almost done. I just have to adjust them in the 3.2.1 Liveboard to test - especially to find css errors!
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.2

Post by Tastenplayer »

I have now adapted the style to 3.2.2
Error corrected
Various things adapted. It now has an icon before the last subject. So the style got a little more red color
The silver-xmas.css completely rebuilt. Everything has to be in the right place now.

Download is in the last answer(see link to forum in the first post)
Last edited by Tastenplayer on Mon Oct 01, 2018 9:46 am, edited 1 time 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
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.2

Post by Tastenplayer »

I redesigned the style from the beginning

Error corrected

deficiencies corrected

The Style CSS tidied up

Download of the Style Version 3.2.2.1 I have updated.

Of course I will submit the style for validation only after the release of the new phpBB version.
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.2

Post by Tastenplayer »

I changed the header. It is "only" a Christmas style. If you have to change the header as well as the responsive because of a long forum description, for this short time, I find this quite laborious.
I think you have to choose one variant instead of adapting both to the new phpbb version.
neuer Header.jpg
neuer Header responsive.jpg
neuer Header responsive.jpg (48.21 KiB) Viewed 3200 times
Last edited by Tastenplayer on Mon Oct 01, 2018 10:04 am, edited 1 time 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
DTMWC
Registered User
Posts: 379
Joined: Tue Jan 16, 2018 6:17 am

Re: [RC] Silver_Xmas_Modern_3.2.2

Post by DTMWC »

Great work with the black and silver colour scheme,

On my phone the site name seems to be on a red background and a bit blurred,

wp_ss_20180909_0001.png

It works fine on my computer browser though, any idea what could be causing this?
Boom.
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.2

Post by Tastenplayer »

Thank you for the hint
Took forever for this title to display correctly in IE.
What an exotic phone you have :mrgreen: . I tested the style here http://www.responsive.cc and it looked correct on every display. But if it looks like that in some phones, I'll have to format the title normally again. Unfortunately, I don't have any mobile devices to see if I can do it that way. Too bad about the special title. :cry:

Code: Select all

h1 {
	color: #BF0000; /* Old browsers */ /* ie6-11 */
	font-family: Arial, sans-serif;
	font-size: 26px;
	font-weight: bolder;
	text-align: center;
	width: 100%;
	background: -webkit-linear-gradient(#ff0000, #800000, #ff0000);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 8px 8px 8px #AB9D89;
}
Maybe I can change the title color in the responsive part? I'll try that.

Tried to change that in response. But there was always some browser that didn't display it correctly. Now monochrome with other shadow.

Hopefully this problem doesn't also exist in the other styles with the gradient icons! What do the Blackfog and Modern style icons look like in your phone?
They are both to be seen as DEMO in my forum(Link in signature)
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 »

- Style updated to 3.2.3
- Title formatting changed(after hint from Dan Stylez)
- Changed the online container with background as in ul.forums to make the group colors and member names easier to see.

I'm still thinking whether the whole statistics part should be in one block. Because depending on the group color you can't see the member names so well. But I think the style looks better that way.
That's why I haven't updated the download yet
xmasonlinecontainer.jpg
Last edited by Tastenplayer on Mon Oct 01, 2018 10:02 am, edited 1 time 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
DTMWC
Registered User
Posts: 379
Joined: Tue Jan 16, 2018 6:17 am

Re: [RC] Silver_Xmas_Modern_3.2.3

Post by DTMWC »

Just checked it on my phone and it's perfect now :) it's a Windows Phone which should be renamed Awkward Phone ;)
Boom.
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 figured it'd have to be a Windows phone. :lol:

Thank you for your help.
As I had feared, the same problem with the gradient icons in the other styles.

Tried all day yesterday to copyright a picture. But somehow nothing fits to the style.
I also packed the statistics part into a block. I still like the style better without the block. But now there are no more problems concerning badly readable groups/member colors. Therefore I am quite uncertain, which variant I should make now.
The one with the picture in the copyright, I haven't found out yet. In all mobile devices, one sees only the left part. :)
xmas_statblock.jpg
Edit 20.9.
Thanks received code in the post on .de, it has now worked with the images.
The bar background can be changed in the css as transparent
Image

I liked it less high indeed better. However, there should still be the opposition for a logo or Happy Newyear.
Image Image Image

Before I can update the download, I have to check the Style.css and the html files again.
Last edited by Tastenplayer on Mon Oct 01, 2018 10:11 am, edited 1 time 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
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 »

The style is definitely ready now.

The whole forum description part and the search headers have been reconfigured. The description is now on the wrap again.

The statistics are now displayed in a block. If you have installed the 24 hours ext. of rmcgirr83, you have to make some changes. Otherwise the ext. is displayed below the block (instructions and code can be found in my forum in the phpbb ECKE https://www.forum.my-tastenworld.ch/viewforum.php?f=227)
There is also an adjustment for the boardannouncement and the Calendar ext. of hjw. However, the background for Saturday and Sunday is not quite satisfactory.

Because the style has light as well as dark backgrounds, several extensions need an adjustment, because the font color is not uniform.

As soon as I have thoroughly checked the style for correctness again, I submit it for validation.
Styledownload is updated.

Edit:
With James help we have now created a file, which you can insert into the header banner Ext, so that in Xmasstyle the Christmas picture is displayed (Except for the search headers it was easy. But with my solution the search header was not displayed). The header looks exactly the same as now. It's about this Ext: https://www.phpbb.com/customise/db/exte ... er_banner/
We made adjustments for the validated version 3.2.1 as well as for the version 3.2.2 RC2.
Only in the Responsive View, the Search Icon is not displayed in the Navbar. This definitely does not seem to be possible.

If someone doesn't have a description displayed in the forum, he can write something like: "We wish everyone a Merry Christmas and a happy New Year" so that there won't be an empty space. Since in the responsive view, no searchbox is displayed in the header anymore.

So you don't have to screw around with the Christmas style for a long time, if this Ext. is installed for the other styles in your forum.
Image

If someone needs more space for their logo(alternative header image), I created a file with an empty header image background. It also contains gifts and fireworks pictures.
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 »

File for hifikabins headerbanner ext: https://www.forum.my-tastenworld.ch/vie ... 227&t=3169
Then the Christmas picture will be displayed in this style, despite active extension.
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”