Please login or register. Welcome to the Studio, guest!


Quick Links:


newBookmarkLockedFalling

(¯`•DregondRahl•._)

(¯`•DregondRahl•._) Avatar
Remanifesting-Eternal

***
Dedicated Member

239


September 2006
what do you think are the differnces (coding wise) between the boards..and which do you think is abit harder ..coz obviously HTML is HTML :P


Last Edit: Oct 21, 2006 17:25:13 GMT by (¯`•DregondRahl•._)




Chris

Chris Avatar

******
Head Coder

19,519


June 2005
Depends on what you're doing. On HyperBoards, this would center the miniprofile.

<style type="text/CSS">
.miniprofile {
text-align: center;
}
</style>


On PB, it'd be this.

<script type="text/Javascript">
var aTD = document.getElementsByTagName("TD");
if(/*Miniprofile Location check here */){
for(a=0;a<aTD.length;a++){
if(aTD[a].width == "20%" && aTD[a].className.match(/^windowbg2?$/i){
aTD[a].align = "center";
}
}
}
</script>




However, an admin editable hack for PB would be easier since you don't have to use AJAX like you do for HB (and InvisionFree too.) :P

In essence, it again depends on the task. PB seems more professional when you attempt to mod it, however HB takes full advantage of CSS and IDs and makes the task easier.

(¯`•DregondRahl•._)

(¯`•DregondRahl•._) Avatar
Remanifesting-Eternal

***
Dedicated Member

239


September 2006
yeah i noticed, lots of CSS..
adn i saw your forum there too , its really awsome..loats of CSS again..tho i dont get how you centerd your board with CSS? or JS?




Chris

Chris Avatar

******
Head Coder

19,519


June 2005
Sengoku? :P It should have been centered by default....

(¯`•DregondRahl•._)

(¯`•DregondRahl•._) Avatar
Remanifesting-Eternal

***
Dedicated Member

239


September 2006
yeah but its resized and centered.i used CSS to resie the baords, but its not centerd..

table_border , me thinks ?

also the admin area is quite strange to me..*will need practice with that*

iv been meaning to get better with CSS and stuff anyways :)

i dunno abt invision, they see to have waayy to many divs , but thats coz its in XML right ?


Last Edit: Oct 21, 2006 23:13:26 GMT by (¯`•DregondRahl•._)




Chris

Chris Avatar

******
Head Coder

19,519


June 2005
I don't think IF is XHTML compliant. :P Almost positive they aren't.

As for HB, you resize it via the skins editing section.

Admin Area > Look > Manage Skins > Click on the default skin > Scroll down a bit > Body > Page Width

:P

One thing about HB - Codes don't load on the admin pages.

(¯`•DregondRahl•._)

(¯`•DregondRahl•._) Avatar
Remanifesting-Eternal

***
Dedicated Member

239


September 2006
i prefer boards with Tables and TRs and Divs and stuff. if its all div's i feel sorry for people who use IE :P




Chris

Chris Avatar

******
Head Coder

19,519


June 2005
Some DIVs are helpful, depending on what you're doing.

(¯`•DregondRahl•._)

(¯`•DregondRahl•._) Avatar
Remanifesting-Eternal

***
Dedicated Member

239


September 2006
yupyup, i use div's for simple mod's that dont need a border.

also hyperboards seems a bit slow at updating info in the login area and stuff.
PB wroks alot faster, in that aspect.




Chris

Chris Avatar

******
Head Coder

19,519


June 2005
Just how they're made and the servers. In all technicality, they're basically both made by Martyn. :P Martyn coded some parts (mainly bug fixes and a few additional features) for PB, and Martyn helped code the bulk of HB.

(¯`•DregondRahl•._)

(¯`•DregondRahl•._) Avatar
Remanifesting-Eternal

***
Dedicated Member

239


September 2006
yeah i know that part.. but using Pearl for PB seems more faster then HB's PHP :P




excellus

excellus Avatar

*
New Member

1


September 2009
I don't prefer either of them to be honest. It's simple enough to pay six or seven dollars and scoop up some decent looking boards. I'd go with www.forumotion.com.

- Proboards are easily hacked, prone to spam bots, etc.
- Hyperboards is a little better, though now more prone to bots and spam then ever. Also run a bit slow and have a shitty ACP.

Michael

Michael Avatar
*Has a custom title*



1,462


October 2007
excellus Avatar
I don't prefer either of them to be honest. It's simple enough to pay six or seven dollars and scoop up some decent looking boards. I'd go with [removed].

- Proboards are easily hacked, prone to spam bots, etc.
- Hyperboards is a little better, though now more prone to bots and spam then ever. Also run a bit slow and have a shitty ACP.


ProBoards isn't hackable, it's crackable obviously - but not hackable. There's money to the people that can do it! :P

And way to advertise!

Chris

Chris Avatar

******
Head Coder

19,519


June 2005
I can't tell if he's a spam bot or not. :P

Michael

Michael Avatar
*Has a custom title*



1,462


October 2007
I dunno! =/

newBookmarkLockedFalling