Skip to main content
Inspiring
February 16, 2007
Question

scale problem

  • February 16, 2007
  • 3 replies
  • 354 views
hey got my background to work with the php script, but now i have a major problem that i am kinda freakin' out.

i guess the best way to explain is to show it.

here it goes :
http://therainbowpride.com/myphptests/add_entry.php

how to i the "Entry Title" right under the bar?? i tried by going to the edit and pressing enter to move it down but then when i open it on the browser it says error on line "x".

and this one too:
http://therainbowpride.com/myphptests/view_blog.php

how to i get it to fit withing the background ?

I am sorry for being a pain, hope someone can help me out "Again"
THX Everyone.
This topic is closed to new replies. Start a new post to keep the conversation going.

3 replies

Inspiring
February 18, 2007
can u let me know, please?
thanks so much
Inspiring
February 16, 2007
On 15 Feb 2007 in macromedia.dreamweaver.appdev, LuisDesigns wrote:

> hey got my background to work with the php script, but now i have a
> major problem that i am kinda freakin' out.
>
> i guess the best way to explain is to show it.
>
> here it goes :
> http://therainbowpride.com/myphptests/add_entry.php
>
> how to i the "Entry Title" right under the bar?? i tried by going
> to the edit
> and pressing enter to move it down but then when i open it on the
> browser it says error on line "x".
>
> and this one too:
> http://therainbowpride.com/myphptests/view_blog.php
>
> how to i get it to fit withing the background ?
>
> I am sorry for being a pain, hope someone can help me out "Again"

You've got the form directly inside the <body> tag. Insert them inside
something, and then you can position that something using CSS.

<style type="text/css">
#wrapper {
width : 700px ;
margin : 0 auto ;
margin-top : 40px ;
text-align : center ;
}
</style>

<body>
<div id="wrapper">
<form>
<!-- ... -->
</form>
</div>

--
Joe Makowiec
http://makowiec.net/
Email: http://makowiec.net/email.php
Inspiring
February 17, 2007
like inserting where. after the <body> tag, anywhere ?
thanks