[RC] bootlike for phpBB 3.2.8

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
remoss
Registered User
Posts: 97
Joined: Wed Jul 08, 2015 2:12 pm
Location: The Netherlands
Name: René
Contact:

Re: [Release] bootlike for phpBB 3.2.0

Post by remoss »

Works, thanks a lot!
User avatar
serek
Registered User
Posts: 79
Joined: Fri Jan 30, 2015 12:47 pm
Location: London
Name: Serge Victor
Contact:

Avatars/info on the left

Post by serek »

It seems new bootlike versions have avatars and info on the right side of viewtopic, what is the simplest and proper way to move it back to the left?
--
find me somewhere in SW London, 100 meters from Thames River
User avatar
pit-PL
Registered User
Posts: 3212
Joined: Sat Nov 21, 2009 12:24 pm

Re: [Release] bootlike for phpBB 3.2.0

Post by pit-PL »

The easiest way would be to have modified files.

btw
Do not miss that part.
cyrilca
Registered User
Posts: 12
Joined: Thu Jul 09, 2009 1:41 pm
Contact:

Re: [Release] bootlike for phpBB 3.2.0

Post by cyrilca »

Hi Pit-PL,

Thank you for this very nice theme! I customized it a little in order to compress some of the blank spaces* (especially for small viewports) and I love it now!

I noticed that the red icons on viewforum indicating that there is a new message in a topic are not linked to the first unread message. Well, the link exists but is inactive. This can be fixed with

Code: Select all

a.row-item-link {
    width: 35px;
    height: 100%;
    left: 5px;
    position: absolute;
}
*Compression of blank areas, in case anyone is interested:

Code: Select all

.panel-heading, .panel-body, .panel-footer{
	padding:5px 15px;
}
#phpbb hr {
	margin: 5px 0;
}
#page-body > h2 {
	margin-top:0;
}
.content, .postprofile dt, .postprofile dd {
	line-height: 1.2;
}
@media (max-width: 767px) {
	.postprofile, .panel-heading {
    display:none;
	}
 }
Thanks again for your work!

EDIT: Changed a.row-item-link height to 100%, so it works for all viewports.
Last edited by cyrilca on Mon Feb 20, 2017 8:02 pm, edited 1 time in total.
User avatar
pit-PL
Registered User
Posts: 3212
Joined: Sat Nov 21, 2009 12:24 pm

Re: [Release] bootlike for phpBB 3.2.0

Post by pit-PL »

Thanks for your input.

Style updated to version 1.0.9.
manicx
Registered User
Posts: 75
Joined: Fri Feb 14, 2003 6:40 pm

Re: [Release] bootlike for phpBB 3.2.0

Post by manicx »

Downloaded the Style and used the added slate and I have to say that I am in love with this style. Very good work pit-PL. Just need some help though. I want profile in left. You posted updated files a few posts up for that but since then, you updated the Style to 1.0.9. Are the files with the profile in left the latest ones?

I mean, I try to make an instructions file for future releases. So far I did for theme files (css) and I try to make one for template files (html). Like this for example:

Code: Select all

Profile on left changes:

bidi.css
--------
find:

.rtl .post .postprofile {
	float: left;
	border-left: none;
	border-right: 1px solid #eee;
	
replace with:

.rtl .post .postprofile {
	float: right;
	border-right: none;
	border-left: 1px solid #eee;
}


custom.css
----------
find: 

.post .postprofile {
	float: right;
	margin-bottom: 0;
	border-left: 1px solid #eee;
}

replace with:

.post .postprofile {
			  
	margin-bottom: 0;
	border-right: 1px solid #eee;
}
Can you help with the 3 html files?
memberlist_view.html
ucp_pm_viewmessage.html
viewtopic_body.html
manicx
Registered User
Posts: 75
Joined: Fri Feb 14, 2003 6:40 pm

Re: [Release] bootlike for phpBB 3.2.0

Post by manicx »

Ok, update, I think these are the remaining changes for html files.

Code: Select all

memberlist_view.html
--------------------
find:

			<h4 class="panel-title col-md-9 col-sm-8 col-xs-8">{PAGE_TITLE}</h4>

move below:

			<!-- IF S_ONLINE -->
			<div class="col-md-3 col-sm-4 col-xs-4">
				<span class="online label label-success center-block">{L_ONLINE}</span>
			</div>
			<!-- ENDIF -->
			
			
ucp_pm_viewmessage.html
-----------------------
find:

			<h4 class="panel-title col-md-9 col-sm-8 col-xs-8">{SUBJECT}</h4>

move below:

			<!-- IF S_ONLINE -->
			<div class="col-md-3 col-sm-4 col-xs-4">
				<span class="online label label-success center-block">{L_ONLINE}</span>
			</div>			

viewtopic_body.html
-------------------
find:

<!-- EVENT viewtopic_body_post_subject_before -->
				<h4 class="panel-title col-md-9 col-sm-8 col-xs-8"><!-- IF postrow.POST_SUBJECT --><a href="#p{postrow.POST_ID}">{postrow.POST_SUBJECT}</a><!-- ELSE -->&nbsp;<!-- ENDIF --></h4>
				

move below:

				<!-- IF postrow.S_ONLINE and not postrow.S_POST_HIDDEN -->
				<div class="col-md-3 col-sm-4 col-xs-4">
					<span class="online label label-success center-block">{L_ONLINE}</span>
				</div>
				<!-- ENDIF -->

find (currently line 218): 

<ul class="dropdown-menu dropdown-menu-{S_CONTENT_FLOW_END} dropdown-contents">

change to:

<ul class="dropdown-menu dropdown-menu-{S_CONTENT_FLOW_BEGIN} dropdown-contents">

find (currently line 400):

<ul class="dropdown-menu dropdown-menu-{S_CONTENT_FLOW_END} dropdown-contents">

change to:

<ul class="dropdown-menu dropdown-menu-{S_CONTENT_FLOW_BEGIN} dropdown-contents">
The one that I mention (line 400), in the zip archive for left profile is

Code: Select all

<ul class="dropdown-menu dropdown-contents">
but in 1.0.8 changed to

Code: Select all

<ul class="dropdown-menu dropdown-menu-{S_CONTENT_FLOW_END} dropdown-contents">
so I assume it should be

Code: Select all

<ul class="dropdown-menu dropdown-menu-{S_CONTENT_FLOW_BEGIN} dropdown-contents">
If we can confirm the above, we are fine!
User avatar
pit-PL
Registered User
Posts: 3212
Joined: Sat Nov 21, 2009 12:24 pm

Re: [Release] bootlike for phpBB 3.2.0

Post by pit-PL »

At first glance that looks to be correct.

manicx wrote: Wed Feb 22, 2017 11:41 am Are the files with the profile in left the latest ones?
No, those files are for 1.0.8.

bootlike_profiles_on_left_1.0.9.zip
DwightPNN
Registered User
Posts: 2
Joined: Thu Feb 23, 2017 8:07 pm
Name: Cosmin

Re: [Release] bootlike for phpBB 3.2.0

Post by DwightPNN »

pit-PL wrote: Wed Feb 22, 2017 5:51 pm At first glance that looks to be correct.

manicx wrote: Wed Feb 22, 2017 11:41 am Are the files with the profile in left the latest ones?
No, those files are for 1.0.8.

bootlike_profiles_on_left_1.0.9.zip
Thank you for modified files.
All bootstrap css files from this style are not readable (I edit these files with notepad++). Have you readable css files? I want to modify some atributes, but it's really hard.
User avatar
pit-PL
Registered User
Posts: 3212
Joined: Sat Nov 21, 2009 12:24 pm

Re: [Release] bootlike for phpBB 3.2.0

Post by pit-PL »

Do not edit those files, just override bootstrap CSS rules in your own file included at the end of the stylesheet.css.
DwightPNN
Registered User
Posts: 2
Joined: Thu Feb 23, 2017 8:07 pm
Name: Cosmin

Re: [Release] bootlike for phpBB 3.2.0

Post by DwightPNN »

pit-PL wrote: Sat Feb 25, 2017 10:29 am Do not edit those files, just override bootstrap CSS rules in your own file included at the end of the stylesheet.css.
Ok. Good to know. Thank you.
manicx
Registered User
Posts: 75
Joined: Fri Feb 14, 2003 6:40 pm

Re: [Release] bootlike for phpBB 3.2.0

Post by manicx »

I found a small issue. This is when I use the Q&A spambot countermeasure. It includes some text not found on Prosilver and the parameters that make the text "Board Administrator" a link just show in the text. I include 3 images to highlight the issue:

a. Slate Q&A (Board Administrator surrounded by %s)

Image

b. Slate Image (Board Administrator displays correctly as a link)

Image

c. Prosilver Q&A (the text that shows in Slate is not there at all)

Image

To be honest, the text in the slate (and bootlike since I tested both) Q&A should not be there at all because it asks for confirmation code. It should be more like the prosilver Q&A.
User avatar
pit-PL
Registered User
Posts: 3212
Joined: Sat Nov 21, 2009 12:24 pm

Re: [Release] bootlike for phpBB 3.2.0

Post by pit-PL »

You're absolutely right.

In captcha_qa.html find and remove <p>{L_CONFIRM_EXPLAIN}</p>

Sorry for the inconvenience.
Ava32
Registered User
Posts: 7
Joined: Thu Mar 02, 2017 12:03 am

Re: [Release] bootlike for phpBB 3.2.0

Post by Ava32 »

Hi Pit-PL can u send me PM becouse i need 5 post
Pit napiszesz do mnie mam pytanie do Ciebie
Ava32
Registered User
Posts: 7
Joined: Thu Mar 02, 2017 12:03 am

Re: [Release] bootlike for phpBB 3.2.0

Post by Ava32 »

Niestety nie mogłem Ci odpisac na PW :/
Hej
Dzięki, że napisałeś.
Widzę, że znasz się na tworzeniu / edycji styli do forów. Moje pytanie brzmi czy da się przerobić ten styl ( szczerze to ja jestem zielony w tych sprawach ): http://demo.phpbb3styles.net/WoWMaevahEmpire pod wersję phpbb 3.2? Ja cos próbowałem ale kompletnie mi to nie wychodzi... Nie mowie o tym żeby wyglądał identycznie ale chociaż podobnie
Pozdrawiam
Post Reply

Return to “[3.2.x] Styles in Development”