[2.0.21] NoseBleed

This is an archive of the phpBB 2.0.x styles that were in our database. The release topics are here for reference, but we no longer host or support these styles.

Rating:

Excellent!
106
52%
Very Good
39
19%
Good
24
12%
Fair
18
9%
Poor
17
8%
 
Total votes: 204

vourie
Registered User
Posts: 1
Joined: Mon Dec 17, 2007 4:02 am

Re: [2.0.21] NoseBleed

Post by vourie »

new to forums here. just uploaded the custom image for my forum but it doesnt appear! what shld i do? :?
krheiss
Registered User
Posts: 1
Joined: Mon Feb 25, 2008 4:44 pm

Re: [2.0.21] NoseBleed

Post by krheiss »

Can anyone help me update the registration profile questions? I would like ask a few other registration questions that would be viewable in the users profile and I'm not sure which files to edit. Nosebleed is an awesome forum and I enjoy using it very much. I'm also grateful to see all the help everyone backs each other up with.

Thanks,

Ken
Fustrated
Registered User
Posts: 2
Joined: Mon Mar 17, 2008 6:33 pm

Re: [2.0.21] NoseBleed

Post by Fustrated »

I'd like to have a "New Topic" botton on the top left of each forum/category (presently it's only on the bottom left). Could someone tell me which files I need to change and what I need to put in them??
Cheers!
User avatar
will_hough
Former Team Member
Posts: 1955
Joined: Mon Feb 06, 2006 8:47 pm
Location: Michigan
Name: Will Hough
Contact:

Re: [2.0.21] NoseBleed

Post by will_hough »

Fustrated wrote:I'd like to have a "New Topic" botton on the top left of each forum/category (presently it's only on the bottom left). Could someone tell me which files I need to change and what I need to put in them??
Cheers!
Open: templates/NoseBleed/viewforum_body.tpl

Find:

Code: Select all

<form method="post" action="{S_POST_DAYS_ACTION}">
After Add:

Code: Select all

<div class="postbuttons"><a href="{U_POST_NEW_TOPIC}"><img src="{POST_IMG}" alt="{L_POST_NEW_TOPIC}" /></a></div>
ztaafen
Registered User
Posts: 10
Joined: Fri Jun 09, 2006 8:22 pm
Location: Sweden
Contact:

Re: [2.0.21] NoseBleed

Post by ztaafen »

Hello. I'm having some trouble with NoseBleed on my board with phpBB 2.0.22. First I tought that it was of some mod that I had installed, but after testing on a fresh install it seems to be because of NoseBleed.

The problem is, that any image posted on the board with an Image

Thank you.
/Jonatan
Image
ztaafen
Registered User
Posts: 10
Joined: Fri Jun 09, 2006 8:22 pm
Location: Sweden
Contact:

Re: [2.0.21] NoseBleed

Post by ztaafen »

Ok. It seems like it is working fine in NoseBleed 1.12. Anyone know where I can find that version?
ztaafen wrote:Hello. I'm having some trouble with NoseBleed on my board with phpBB 2.0.22. First I tought that it was of some mod that I had installed, but after testing on a fresh install it seems to be because of NoseBleed.

The problem is, that any image posted on the board with an Image

Thank you.
/Jonatan
Image
FenderElctrc
Registered User
Posts: 16
Joined: Sat Mar 08, 2008 3:31 am

Re: [2.0.21] NoseBleed

Post by FenderElctrc »

I can't install this style. I've unzipped the folder I downloaded into the /style directory. When I go to the styles tab in the Admin panel, nothing shows up in uninstalled styles. Don't know what's going on.
-Philip
Thatbitextra
Former Team Member
Posts: 7604
Joined: Mon Mar 21, 2005 5:04 am
Location: A place where something is or could be located; a site.
Contact:

Re: [2.0.21] NoseBleed

Post by Thatbitextra »

FenderElctrc wrote:I can't install this style. I've unzipped the folder I downloaded into the /style directory. When I go to the styles tab in the Admin panel, nothing shows up in uninstalled styles. Don't know what's going on.
This is a style for phpBB 2.0.x, not 3.
Styles KB
My MODs: Choose Who to Accept PMs From (Prevents unwanted PMs!) | Warn of Old Topic Before Posting Reply
Style: subBlack (Now updated to phpBB 2.0.22 and 5 new color schemes!)
mgoi
Registered User
Posts: 121
Joined: Sat Sep 01, 2007 10:55 am
Contact:

Re: [2.0.21] NoseBleed

Post by mgoi »

@FenderElctrc: you can get an alpha version of the phpBB3 version here

Image
opossumpetya
Registered User
Posts: 53
Joined: Thu Nov 23, 2006 10:14 pm

Re: [2.0.21] NoseBleed

Post by opossumpetya »

Is it safe to get rid of lightbox scripts from NoseBleed?

NB is using lightbox to popup the images included with IMG tag. Lightbox is using prototype and scriptaculous, overall its like 100K extra being loaded on each pageview... I want to get rid of all this JS, but afraid it's gonna break something (other than lighbox for images). does anyone knows if NB theme is using prototype lib for anything else?

tia
User avatar
will_hough
Former Team Member
Posts: 1955
Joined: Mon Feb 06, 2006 8:47 pm
Location: Michigan
Name: Will Hough
Contact:

Re: [2.0.21] NoseBleed

Post by will_hough »

opossumpetya wrote:Is it safe to get rid of lightbox scripts from NoseBleed?
Yes, It's only used with the image BB tags.

Delete: /lightbox

Open: overall_header.tpl
Find and Delete:

Code: Select all

<script type="text/javascript"
	src="templates/NoseBleed/lightbox/prototype.js"></script>
	
<script type="text/javascript"
	src="templates/NoseBleed/lightbox/scriptaculous.js?load=effects"></script>
	
<script type="text/javascript"
	src="templates/NoseBleed/lightbox/lightbox.js"></script>
	
<link rel="stylesheet"
	href="templates/NoseBleed/lightbox/lightbox.css" type="text/css" media="screen" />
Open: bbcode.tpl
Find:

Code: Select all

<!-- BEGIN img --><a rel="lightbox" href="{URL}"><img src="{URL}" style="border: 0;" onLoad="if(this.width > 550) {this.width = 550;}" onmouseout="unpointercursor();" onmouseover="if(this.width == 550) {pointercursor();}" /></a><!-- END img -->
Replace with:

Code: Select all

<!-- BEGIN img --><img src="{URL}" style="border:0;" /><!-- END img -->
opossumpetya
Registered User
Posts: 53
Joined: Thu Nov 23, 2006 10:14 pm

Re: [2.0.21] NoseBleed

Post by opossumpetya »

will_hough, thank you very much for quick reply!

I actually do like lightbox for images on my board, but lightbox->scriptaculous->prototype feels like overkill just for this. I'll take it out, and If i'll find a lot lighter replacement for just simple lightbox functionality, i'll add that later.

thanks
OrangeJuice
Registered User
Posts: 1
Joined: Wed Sep 10, 2008 3:05 pm

Re: [2.0.21] NoseBleed

Post by OrangeJuice »

I am modding the css to a dark style (using the phpbb3 port) - however on the main table (with the fourm titles), there is a mouseover colour #ebebeb. This is not anywhere in the CSS.

Any help of where I can change this would be great.

You have changed it on this site so I know it must be somewhere!

It shows in the sourcecode as:

Code: Select all

<td class="row1 two"
			onmouseover="this.style.backgroundColor='#EBEBEB'; this.style.cursor='pointer'"
			onmouseout="this.style.backgroundColor=''"
			onclick="window.location.href='./viewforum.php?f=2'">

Where is this?

Many Thanks
Locked

Return to “[2.0.x] Styles Database Releases”