Jump to content
MakeWebGames

Recommended Posts

Posted

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)

Posted

Re: right hand side main menu

i know, im just saying, for like when you are creating/editing mods, it would be helpful if you could see it, is there any programs like that?

Posted

Re: right hand side main menu

Omg, just use notepad please ... For the main menu question ... open up header.php, see where it says require/include mainmenu , align left, change that to right.

Posted

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

Posted

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

Posted

Re: right hand side main menu

Why do i get the feeling that aligning a mainmenu to the right of the page would be so much easier than rewriting the whole thing?

Posted

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

Posted

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.

Posted

Re: right hand side main menu

i was joking about the retard things :D

dreamweaver gives the line number, notepad puts the little square so you can see where there is an enter, and you cant see the line number

Posted

Re: right hand side main menu

lol align bottom didn't work, read the posts... i have already tried that. is all it does is align the main page content to the bottom.

Posted

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?

Posted

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?

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...