The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
VBA Help
Can someone help me code this, im trying to create new locations for my VBA homepage but im not getting any support over there and as much as i search i keep coming to the same answer " Its easy to do if you know basic html" but i dont know html.
Im trying to accomplish the block positions like the image i attached. Here is my basic code. Any help would be greatly appreciated. |
#2
|
||||
|
||||
You can't put if conditions around whole columns. Looking at your image, you NEED to account for four columns per row. Some will have colspans and some will have rowspans. Here is your basic structure (I think... I through this together kinda quick):
HTML Code:
<table> <tr> <td colspan=2>stuff</td> <td colspan=2>stuff</td> </tr> <tr> <td rowspan=2>stuff</td> <td>stuff</td> <td>stuff</td> <td rowspan=2>stuff</td> </tr> <tr> <td colspan=2>stuff</td> </tr> <tr> <td colspan=2>stuff</td> <td colspan=2>stuff</td> </tr> <tr> <td colspan=4>stuff</td> </tr> </table> |
#3
|
|||
|
|||
Its a little off it has all this extra spacing every were.
www.localcobalt.net Select Dev2 Style to see |
#4
|
||||
|
||||
I would ask over at vbadvanced
|
#5
|
||||
|
||||
I have no idea what I am supposed to be looking at in dev2. It's just a basic page with a column on the left.
I know nothing really of vba. So I have no idea to take that table and make it into a page using the vba template system. |
#6
|
|||
|
|||
Sorry Lynn,
I had to put all the blocks back to normal so my site looked like it was suppose to but here is a screen of what the code you gave me did. http://www.localcobalt.net/forum/mem...tom-layout.jpg Thanks as i stated i did and wasnt getting any help. |
#7
|
|||
|
|||
Everything is easily possible except the center one that has a right and left side. If you just use one and put what you want to put in there side by side it would be alot easier.
|
#8
|
||||
|
||||
Quote:
Did you put some text into the table I posted? And did you put it all in it's own div or table or something? Did you validate the page to make sure your html was correct (that you didn't just put the code smack in the middle of an area you should not have)? |
#9
|
|||
|
|||
Does this link work?
http://www.localcobalt.net/forum/mem...tom-layout.jpg Im having issues with other people following links to my site i dont know why. Ok i got a smaller version of it up loaded to show you what its doing. |
#10
|
||||
|
||||
Did you check for other threads on the same topic?
http://www.vbadvanced.com/forum/showthread.php?t=31231 Lynne's answer above gave you the basic layout you need, the next step would be adding the needed block name variables & conditionals (don't even really need the conditionals as much as the block names that match the names you entered into your ACP). |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|