Search:
Type: Posts; User: LearningCoder
Search :
Search took 0.01 seconds.
Is the /page/ folder WITHIN your CSS folder or is it at the same level as your CSS folder?
Kind regards,
LC.
Change this:
#foot-menu {
position: relative; width:660px;
margin: 5px auto;
padding: 5px 5px 40px;
font-family: Arial,Verdana;
font-size: 1.00em;
list-style: none;
Can you post what code you have so far please?
Regards,
LC.
Sounds like you've set your main container (html, body, div, etc) with a pixel value.
Either lower the overall pixel value or change to percentage.
Hard to say with no code.
Regards,
LC/
I want it to act like a file host were I can upload different things not just have a site there. My site is GardenableImproved though.
When I finally pay for paid hosting I will host it like a...
Are you able to input your own code into the builder?
Regards,
LC.
Add this attribute to your <form> tag for a start:
enctype="multipart/form-data"
Next create a file input:
<input type="file" name="your_file" />
Add this to your CSS:
.style4 {
float: right;
}
That HTML seems really over complicated, unnecessary <div>s etc.
Images are inline elements, just put it in the same container. To do what you said I'd generally do something like:
<div id="header">
<img src="img1.jpg" alt="img1" style="width: 200px;height:...
Good resource for CSS: http://www.cssbasics.com/
I started off with HTML+CSS. Then when I felt I was good enough to move on I went to JavaScript/jQuery, finally PHP. Javascript is to add...
After setting a session, if you locate to another page using a header() call, you need to restart the session in the page which you go to.
Consider this code:
session_start();
...
The errors and warning are pretty much explanatory. They give the tag and also which line the error is on!
If you get absolutely stuck, post your code and ill have a go at uploading it to the...
It's no good having valid CSS which is working with invalid HTML. It's bound to cause issues. I think you should get both your HTML and CSS as near to validity as possible then at least you know it...
I've giving me a 'Restricted Access' error for your images.
Regards,
LC.
Sorry for re-posting but cannot seem to edit my previous post.
Give this code a try:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
...
Do you want your captcha centered within that div, not the actual div itself to be centered?
Just looked at the code and the <div> is centering, but the captcha is aligned to the left.
I'm...
Have you got a live example at all? It's strange because using width and margin auto generally will center things.
Is there anything else which could affect the styles for the <div>? For example...
What will the user actually enter? Just their email address?
You want to give them your own username and password?
Regards,
LC.
When you have positioned and image 'absolutely' on your page, how can you make the next element on the page display underneath this, without using multiple break tags?
I've been searching google...