Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

scale problem

Contributor ,
Feb 15, 2007 Feb 15, 2007
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.
TOPICS
Server side applications
349
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 16, 2007 Feb 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
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Feb 16, 2007 Feb 16, 2007
like inserting where. after the <body> tag, anywhere ?
thanks
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Contributor ,
Feb 18, 2007 Feb 18, 2007
LATEST
can u let me know, please?
thanks so much
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines