-
Contact Form Almost working
Some of your php code for dealing with the submitted form would help. For example, are you using an if else statement to check the captcha has been submitted and if so if it is correct?
-
Please can someone help - image position problems
You need to either give the image thumbnails a class or reference images in a specific div or class as what you are doing at the moment is applying one style to all img tags. img.thumb { postition: absolute; } // Or .item img { position: absolute; } If using the first example then each img tag in your html will have to have the class assigned to it.
- Hello...and please help.
-
Contact Form broken
I would get rid of all your position absolute styles with negative margins and place on the page using basic positioning and positive margins and padding.
-
Personalized news updates for Web Professionals
Well, thought this could be interesting so went to the site and signed up - now what??? I have received nothing about how I do whatever I need to do next.
-
Registration and Login Script Issues
Your form was correct yesterday when I spent all day helping you on the web developer forum, not sure why you have changed it. Have you dumped your post data as I suggested using var_dump($_POST); at the top of your login.php page?
-
Wordpress Tagline not showing
This is a wild guess, but is the role="banner" set to be just an image somehow as your H2 tag isn't even displaying in the source code?
- PHP been a while
-
Wordpress - styling posts on the index page (starkers theme)
All styles should be in style.css in the theme directory. To find out which styles you need to change for the posts, load up your index page and view source then find the div id or class in the style sheet. I cannot give you a definitive answer as it all depends on the theme and what they have named their styles.
-
CSS Horizontal Navigation
Pure CSS - if you google CSS horizontal menu you will find loads of examples on how to achieve what you are looking for (including the current page effect).
-
-
-
can anyone tell me why
You are not aligning the text to the left and therefore the text-align: center; from the body style is still being applied. Therefore change your li within the ul to text-align: left; ul.tick li { background-image:url(../img/tick.png); background-position:0 6px; background-repeat:no-repeat no-repeat; list-style-image:initial; list-style-position:initial; list-style-type:none; font-size:1.4em; font-family:"museo 300"; font-weight:normal; line-height:1.6em;text-align: left;} By the way you also have a p tag in your left ul which is semantically incorrect: <ul class="tick"> <li>Logo Design, brand identity and strategy</li> <br/> <p>More coming soon</p> </ul> Should be: <ul class="tick"> <li>Logo Design, brand identity and strategy</li> <li>More coming soon</li> </ul> Or: <ul class="tick"> <li>Logo Design, brand identity and strategy</li> </ul> <p>More coming soon</p>
-
Idiot seeks simple php advice.
You are missing an equals sign in your if statement (you need 2 to check for matches: if ($_SERVER['PHP_SELF'] == "index.php")
-
Post to self problem
Or if (isset($_POST) && !empty($_POST['email'])) { // Code here }
-
webthumbnail.org - A new website screenshots generator review
Just had a quick play and love it, thank you for developing it. The only addition that I feel would be nice to see is the option to select part of the screenshot (i.e. a full screenshot of the whole page) to use as a thumbnail.
-
Dynamic Drop Down
Not sure if this is your problem but is definitely wrong if ($name);{ Should be if ($name) { Remove the semi-colon