Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

Website Review and Suggestions


You are currently viewing our Website Review and Suggestions as a guest. Please register to participate.
Login



Reply
Forum Layout Up and Running
Old 08-26-2007, 05:31 AM Forum Layout Up and Running
mackaltman's Avatar
Super Talker

Posts: 135
Name: Mack Altman III
Location: Goose Creek, SC, USA
Trades: 0
Alright, recently we had a server crash, so needless to say the main site is currently down. But that's because I've been diligently working on the design of the forum. I was wondering if you guys could give it a check out. It's a Paid to forum and will be growing even quicker than before I feel with the layout. We already have over 76,000 hits in 3 days of it going down and us losing all the files.

Let us know what you think.

http://publik.thegview.com
__________________
Mack Altman III

Please login or register to view this content. Registration is FREE

My Biggest Pet Peeve: "Web Designers" who have no artistic skill.

mackaltman is offline
Reply With Quote
View Public Profile Visit mackaltman's homepage!
 
 
Register now for full access!
Old 08-26-2007, 06:59 AM Re: Forum Layout Up and Running
aatiis's Avatar
Skilled Talker

Posts: 53
Name: Attila Oláh
Location: Serbia
Trades: 0
It's really cool. I know this post is completely useless, I'm not posting to be able to add my site to review, anyway. I like the way you connect page elements, integrate ads with the content, merge logos with panels, it looks pretty smooth. Nice work.
__________________

Please login or register to view this content. Registration is FREE
:: my web design blog
aatiis is offline
Reply With Quote
View Public Profile Visit aatiis's homepage!
 
Old 08-26-2007, 07:45 AM Re: Forum Layout Up and Running
Skilled Talker

Posts: 96
Name: Andrew
Location: A place to BE
Trades: 0
I like the our programs that really cool.. do you know one for the forum SMF
__________________



Astawicki is offline
Reply With Quote
View Public Profile Visit Astawicki's homepage!
 
Old 08-26-2007, 05:40 PM Re: Forum Layout Up and Running
mackaltman's Avatar
Super Talker

Posts: 135
Name: Mack Altman III
Location: Goose Creek, SC, USA
Trades: 0
This layout is completely original to tell you the truth. I have basically flipped over backwards with the vbulletin script. I can almost tell you exactly how to display anything in the database using their system. As far as the actual rollover effects used with the "Our Programs" page, you can use the following script.

Put the following within the header:
Code:
<style>
.tableRollOverEffect1, .tableRollOverEffect1 a, .tableRollOverEffect1 a:active, .tableRollOverEffect1 a:visited, .tableRollOverEffect1 a:hover{
background-color:#36718f;
color:#dbeaf2;
text-decoration: none;
}

.tableRowClickEffect1, .tableRowClickEffect1 a, .tableRowClickEffect1 a:active, .tableRowClickEffect1 a:visited, .tableRowClickEffect1 a:hover{
background-color:#99cc00;
color:#000;
font-weight: bold;
text-decoration: none;

</style>
}
<script type="text/javascript">
    var arrayOfRolloverClasses = new Array();
    var arrayOfClickClasses = new Array();
    var activeRow = false;
    var activeRowClickArray = new Array();
    
    function highlightTableRow()
    {
        var tableObj = this.parentNode;
        if(tableObj.tagName!='TABLE')tableObj = tableObj.parentNode;

        if(this!=activeRow){
            this.setAttribute('origCl',this.className);
            this.origCl = this.className;
        }
        this.className = arrayOfRolloverClasses[tableObj.id];
        
        activeRow = this;
        
    }
    
    function clickOnTableRow()
    {
        var tableObj = this.parentNode;
        if(tableObj.tagName!='TABLE')tableObj = tableObj.parentNode;        
        
        if(activeRowClickArray[tableObj.id] && this!=activeRowClickArray[tableObj.id]){
            activeRowClickArray[tableObj.id].className='';
        }
        this.className = arrayOfClickClasses[tableObj.id];
        
        activeRowClickArray[tableObj.id] = this;
                
    }
    
    function resetRowStyle()
    {
        var tableObj = this.parentNode;
        if(tableObj.tagName!='TABLE')tableObj = tableObj.parentNode;

        if(activeRowClickArray[tableObj.id] && this==activeRowClickArray[tableObj.id]){
            this.className = arrayOfClickClasses[tableObj.id];
            return;    
        }
        
        var origCl = this.getAttribute('origCl');
        if(!origCl)origCl = this.origCl;
        this.className=origCl;
        
    }
        
    function addTableRolloverEffect(tableId,whichClass,whichClassOnClick)
    {
        arrayOfRolloverClasses[tableId] = whichClass;
        arrayOfClickClasses[tableId] = whichClassOnClick;
        
        var tableObj = document.getElementById(tableId);
        var tBody = tableObj.getElementsByTagName('TBODY');
        if(tBody){
            var rows = tBody[0].getElementsByTagName('TR');
        }else{
            var rows = tableObj.getElementsByTagName('TR');
        }
        for(var no=0;no<rows.length;no++){
            rows[no].onmouseover = highlightTableRow;
            rows[no].onmouseout = resetRowStyle;
            
            if(whichClassOnClick){
                rows[no].onclick = clickOnTableRow;    
            }
        }
        
    }
    </script>
Put this where you want the code to be displayed:
Code:
<table class="progs" id="program">
    <thead>
        <tr>
            <td>Header</td>
            <td>Header</td>
            <td>Header</td>
            <td>Header</td>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td height="10" colspan="4"></td>
        </tr>
        <tr>
            <td>text</td>
            <td>text</td>
            <td>text</td>
            <td>text</td>
        </tr>
        <tr>
            <td>text</td>
            <td>text</td>
            <td>text</td>
            <td>text</td>
        </tr>
    </tbody>
</table>

<script type="text/javascript">
addTableRolloverEffect('program','tableRollOverEffect1','tableRowClickEffect1');
</script>
I hope this is what you meant.
__________________
Mack Altman III

Please login or register to view this content. Registration is FREE

My Biggest Pet Peeve: "Web Designers" who have no artistic skill.

mackaltman is offline
Reply With Quote
View Public Profile Visit mackaltman's homepage!
 
Old 08-27-2007, 03:55 AM Re: Forum Layout Up and Running
Skilled Talker

Posts: 96
Name: Andrew
Location: A place to BE
Trades: 0
WOW I like it
__________________



Astawicki is offline
Reply With Quote
View Public Profile Visit Astawicki's homepage!
 
Old 08-27-2007, 07:23 AM Re: Forum Layout Up and Running
Novice Talker

Posts: 6
Name: iskander
Trades: 0
Nice one!
What is it based on? PHPbb or what?
Anyways considering the layout you have nothing to wary about. I mean it's kinds classical for the forums and proved itself to be efficient.
da_wep_massta is offline
Reply With Quote
View Public Profile
 
Old 08-27-2007, 08:49 AM Re: Forum Layout Up and Running
mackaltman's Avatar
Super Talker

Posts: 135
Name: Mack Altman III
Location: Goose Creek, SC, USA
Trades: 0
Yeah, although I'm still trying to edit some other parts of the site. My goal is to make it not look like forums. I've actually gotten a few offers to custom design a few website forums from it, which is great.

In changing the layout I got rid of a lot of unnecessary information that they had on there. They have way too many unneeded tags in their script. And oh yeah, to answer your question it's vBulletin. This is the farthest I've gone into stripping a forums' coding.

If any of you have any recommendations, they would be greatly appreciated.
__________________
Mack Altman III

Please login or register to view this content. Registration is FREE

My Biggest Pet Peeve: "Web Designers" who have no artistic skill.

mackaltman is offline
Reply With Quote
View Public Profile Visit mackaltman's homepage!
 
Reply     « Reply to Forum Layout Up and Running
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.25393 seconds with 12 queries