Is this possible?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • forumguy
    Senior Member
    • Nov 2006
    • 248
    • 3.6.x

    Is this possible?

    The attachment.

    If it is possible to create a right column, could someone provide me the code for it. Thanks.
    Attached Files
    vBulletin 5.0 coming soon... :confused:
    Visit my site today!
  • Onimua
    Senior Member
    • Apr 2005
    • 4572

    #2
    These instructions should work with 3.6.x as well (I don't see why they wouldn't): http://www.vbulletin.com/forum/showthread.php?t=156775
    Congratulations on the death of vBulletin, Internet Brands.

    Comment

    • forumguy
      Senior Member
      • Nov 2006
      • 248
      • 3.6.x

      #3
      I've tried that. That puts the column within the body and below the logo. Thanks for that though.
      vBulletin 5.0 coming soon... :confused:
      Visit my site today!

      Comment

      • Onimua
        Senior Member
        • Apr 2005
        • 4572

        #4
        Try putting the same code in the same places, but this time, like in the header, before any of the other code in that template, and in the footer, after everything in the template.
        Congratulations on the death of vBulletin, Internet Brands.

        Comment

        • forumguy
          Senior Member
          • Nov 2006
          • 248
          • 3.6.x

          #5
          I tried that also, and nothing showed up.
          vBulletin 5.0 coming soon... :confused:
          Visit my site today!

          Comment

          • Onimua
            Senior Member
            • Apr 2005
            • 4572

            #6
            I went and tried this, and it worked for me... I don't know how your templates are so I can't say it will work exactly, but it should:

            In the header, add this above everything else:

            HTML Code:
            <table width="$stylevar[outertablewidth]" border="0" cellpadding="0" cellspacing="0" align="center">
                <tr>
            
                <td valign="top">
            In the footer, find:
            HTML Code:
            $spacer_close
            <!-- /content area table -->
            Add below it:
            HTML Code:
                </td>
            
                <td width="150" valign="top" class="page" style="padding: $stylevar[cellpadding]px;">
                    YOUR CONTENT HERE
                </td>
            
                </tr>
            </table>
            It works with the default style, so it should work on yours if it isn't that modified.
            Congratulations on the death of vBulletin, Internet Brands.

            Comment

            • forumguy
              Senior Member
              • Nov 2006
              • 248
              • 3.6.x

              #7
              It worked! Except, it says "your content here" at the bottom and it's to the left.
              vBulletin 5.0 coming soon... :confused:
              Visit my site today!

              Comment

              • Onimua
                Senior Member
                • Apr 2005
                • 4572

                #8
                Like I said, since you have custom templates from the looks of it, it may or may not have worked 100%.

                Did you have your header/footer (or other templates for that matter) edited before? If so, can you post the code?
                Congratulations on the death of vBulletin, Internet Brands.

                Comment

                • forumguy
                  Senior Member
                  • Nov 2006
                  • 248
                  • 3.6.x

                  #9
                  Here is my existing header template:
                  HTML Code:
                  <!-- logo -->
                  <a name="top"></a>
                  <table width="$stylevar[outertablewidth]" border="0" align="center" cellpadding="0" cellspacing="0" class="table1">
                  <tr>
                      <td align="center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
                    </tr>
                  </table>
                  <table width="$stylevar[outertablewidth]" border="0.1" align="center" cellpadding="0" cellspacing="0" class="csstable" id="csstable">
                    <tr>
                      <td>
                      
                  <ul id="thicktabs">
                  <li>
                          <if condition="$show['member']">
                          <a id="leftmostitem" a href="usercp.php$session[sessionurl_q]"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0">  $vbphrase[user_cp]</a>          
                          </if>
                          </li>
                          <if condition="$show['registerbutton']">
                  <li><a href="register.php$session[sessionurl_q]" rel="nofollow"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[register]</a>
                  
                  </li>
                  </if>
                  <li><a href="faq.php$session[sessionurl_q]" accesskey="5"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[faq]</a></li>
                  <li><a href="memberlist.php$session[sessionurl_q]"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[members_list]</a></li>
                  <li><a href="calendar.php$session[sessionurl_q]"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[calendar]</a></li>
                                  <if condition="$show['member']">
                  <li><a href="search.php?$session[sessionurl]do=getnew" accesskey="2"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[new_posts_nav]</a></li>
                                  <else />
                  <li><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[todays_posts]</a></li>
                                  </if>
                  <li><a href="/search.php"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> Search</a></li>
                          <if condition="$show['member']">
                  <li><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onClick="return log_out()"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[log_out]</a></li>
                          </if>
                  </ul>
                      </td>
                    </tr>
                  </table>
                  
                  <!-- /logo -->
                  
                  <!-- content table -->
                  $spacer_open
                  
                  $_phpinclude_output
                  vBulletin 5.0 coming soon... :confused:
                  Visit my site today!

                  Comment

                  • Yours Truly
                    Senior Member
                    • Feb 2007
                    • 377
                    • 3.6.x

                    #10
                    Originally posted by forumguy
                    Here is my existing header template:
                    HTML Code:
                    <!-- logo -->
                    <a name="top"></a>
                    <table width="$stylevar[outertablewidth]" border="0" align="center" cellpadding="0" cellspacing="0" class="table1">
                    <tr>
                        <td align="center"><a href="$vboptions[forumhome].php$session[sessionurl_q]"><img src="$stylevar[titleimage]" border="0" alt="$vboptions[bbtitle]" /></a></td>
                      </tr>
                    </table>
                    <table width="$stylevar[outertablewidth]" border="0.1" align="center" cellpadding="0" cellspacing="0" class="csstable" id="csstable">
                      <tr>
                        <td>
                        
                    <ul id="thicktabs">
                    <li>
                            <if condition="$show['member']">
                            <a id="leftmostitem" a href="usercp.php$session[sessionurl_q]"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0">  $vbphrase[user_cp]</a>          
                            </if>
                            </li>
                            <if condition="$show['registerbutton']">
                    <li><a href="register.php$session[sessionurl_q]" rel="nofollow"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[register]</a>
                    
                    </li>
                    </if>
                    <li><a href="faq.php$session[sessionurl_q]" accesskey="5"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[faq]</a></li>
                    <li><a href="memberlist.php$session[sessionurl_q]"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[members_list]</a></li>
                    <li><a href="calendar.php$session[sessionurl_q]"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[calendar]</a></li>
                                    <if condition="$show['member']">
                    <li><a href="search.php?$session[sessionurl]do=getnew" accesskey="2"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[new_posts_nav]</a></li>
                                    <else />
                    <li><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[todays_posts]</a></li>
                                    </if>
                    <li><a href="/search.php"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> Search</a></li>
                            <if condition="$show['member']">
                    <li><a href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]" onClick="return log_out()"><img src="http://supermarioland.org/images/nwf/css/button.gif" alt="Button" border="0"> $vbphrase[log_out]</a></li>
                            </if>
                    </ul>
                        </td>
                      </tr>
                    </table>
                    
                    <!-- /logo -->
                    
                    <!-- content table -->
                    $spacer_open
                    
                    $_phpinclude_output
                    And what do you want done?

                    Comment

                    • forumguy
                      Senior Member
                      • Nov 2006
                      • 248
                      • 3.6.x

                      #11
                      Read the topic.
                      vBulletin 5.0 coming soon... :confused:
                      Visit my site today!

                      Comment

                      • Onimua
                        Senior Member
                        • Apr 2005
                        • 4572

                        #12
                        What's in your footer? I think it's something in there that is probably throwing it off.
                        Congratulations on the death of vBulletin, Internet Brands.

                        Comment

                        • forumguy
                          Senior Member
                          • Nov 2006
                          • 248
                          • 3.6.x

                          #13
                          I haven't customized my footer.
                          vBulletin 5.0 coming soon... :confused:
                          Visit my site today!

                          Comment

                          • forumguy
                            Senior Member
                            • Nov 2006
                            • 248
                            • 3.6.x

                            #14
                            Just a quick question. To accomplish this, could I wrap the whole header in a table column tag, with the other column to the left?
                            vBulletin 5.0 coming soon... :confused:
                            Visit my site today!

                            Comment

                            • Yours Truly
                              Senior Member
                              • Feb 2007
                              • 377
                              • 3.6.x

                              #15
                              Originally posted by forumguy
                              I haven't customized my footer.
                              You would need to customize your footer to achieve your desired result

                              Comment

                              widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
                              Working...