Jump to content
MakeWebGames

right hand side main menu


Snatchy

Recommended Posts

Re: right hand side main menu

something like this (if its in a table format) <td width="(number goes here)%" align="center"></td>

am not sure but i guess its something like that

or just paste the whol script into microsoft front page and hightlight the menu and click right and done! (thats what i do)

Link to comment
Share on other sites

Re: right hand side main menu

number 1, don't talk to me like a dickhead thank you very much and number 2.... It doesn't say align left.

Number 3, I find it much much easier to code in dreamweaver as it colour codes all your coding and helps you recognise where and when things arn't right so ya can stick ya notepad where the sun don't shine buddy

function menuarea()

{

include "mainmenu.php";

global $ir,$c;

print "</td><td valign='top'>

";

}

that's all there is and when i change top to right or bottom it adjusts where the main page is displayed.....suprise suprise nothing happens

Link to comment
Share on other sites

Re: right hand side main menu

 

I find it much much easier to code in dreamweaver as it colour codes all your coding and helps you recognise where and when things arn't right so ya can stick ya notepad where the sun don't shine buddy

I use dreamweaver also, it is good program, and notepad does not give you the line numbers, its for retards

Link to comment
Share on other sites

Re: right hand side main menu

go to header.php

find

 

function menuarea()

{

include "mainmenu.php";

global $ir,$c;

print "</td><td valign='top'>

";

replace it with

function menuarea()

{

include "mainmenu.php";

global $ir,$c;

print "</td><td valign='bottom'>

";

then test it and tell me if it works or what changes, if it changes tell me

Link to comment
Share on other sites

Re: right hand side main menu

 

I use dreamweaver also, it is good program, and notepad does not give you the line numbers, its for retards

I think you have that backwards. Dreamweaver is for retards who can't troubleshoot their own code. Notepad is for coders who know what they're doing inside and out.

Of course sometimes Notepad is being funky and I use wordpad.

Link to comment
Share on other sites

Re: right hand side main menu

oh ok, let me try something else:

find

function menuarea()

{

include "mainmenu.php";

global $ir,$c;

print "</td><td valign='top'>

";

}

function endpage()

replace:

function menuarea()

{

include "mainmenu.php valign=right";

global $ir,$c;

print "</td><td valign='top'>

";

}

function endpage()

 

why do you want this anyway?

Link to comment
Share on other sites

Re: right hand side main menu

why do you guess at random things to make it work :|

aligning it to the right is basic html, and since (i think) its tabled, you'll have to move the entire content into the left table cell, and the menu to the right.

and how can you vertically align something to the right?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...