Everything posted by bensd
-
Gap at top of website in IE8
Getting a wierd gap at the top of my website in IE8: http://www.greecebreaks.co.uk Had a quick search on google but couldn't find anything. Has anyone else come accross this problem? EDIT: It's not happening all the time. Just went back onto the page and the margin had gone!
-
Problem with footer background
Hi, Having some problems displaying a background on the footer: greecebreaks.co.uk. Here is my code: #footer_wrap { width: 100%; height: 200px; background: #A4C1F9 url('images/footer_bg.jpg') repeat-x; } #footer { width: 960px; margin 0 auto; } <div id="footer_wrap"> <div id="footer"> <p>GreeceBreaks.co.uk is proudly powered by <a href="http://wordpress.org/">WordPress</a><br /><a href="http://www.greecebreaks.co.uk/feed/">Entries (RSS)</a> and <a href="http://www.greecebreaks.co.uk/comments/feed/">Comments (RSS)</a>.</p> </div> </div>
-
Need help centering the page
How to center your site: http://www.webdesignerforum.co.uk/topic/2473-how-to-center-a-site-using-css/
-
.co.uk or .com ?
Definitely use .co.uk for the site and redirect the .com to it
-
Having all sorts of problems
You can check the renewal dates on the whois entry. If it is in the suspended/redemption period then there will be a way of renewing it.
-
Firefox Issue
Just a tip, always code for firefox and then find the fixes/hacks for IE. It is a lot easier doing it this way round.
-
Problem with drop down menu
Drop me a PM with the link and i will take a look
-
Looking for Work
Have a look here, they offer a free hosting plan, otherwise i have a reseller hosting plan if you want some cheap hosting.
- Inserting Text
-
Why doesn't my web site work properly in inet explorer?
Looks fine to me. Also, any reason why you have google ads on your site?
-
Configuring Domain to point to my site
You can do this from inside your 123-reg control panel, something like web forwarding or domain forwarding, it is free as well from 123-reg.
-
What width should you use for a fixed width layout?
What width should you use for a fixed width layout?
-
browser compatibility
Also, always best to code for firefox and then hack for IE.
-
where to put
You will need to copy the html and css into you current template files.
- CSS dropdown hover issue
-
CSS dropdown hover issue
Hi Vicky, You should just be able to swap the php code into the <a> tag: <li><a href="#" <?php if ($thisPage=="Capabilities") echo " class=\"active\""; ?>>Capabilities</a> <ul> <li><a href="#">Safety Management</a></li> <li><a href="#">Risk Management</a></li> <li><a href="#">Project Management</a></li> <li><a href="#">Business Development</a></li> <li><a href="#">Bid Support</a></li> </ul> </li> - Ben
-
CSS dropdown hover issue
Hi Vicky, I think it is because you are styling the <li> and not the <a>. This is your current code: #navigation li.active a, #navigation li a:hover{color:#fdc21c;} <li class="active"><a href="#">Capabilities</a> <ul> <li><a href="#">Safety Management</a></li> <li><a href="#">Risk Management</a></li> <li><a href="#">Project Management</a></li> <li><a href="#">Business Development</a></li> <li><a href="#">Bid Support</a></li> </ul> </li> Change it to this: #navigation li a.active, #navigation li a:hover{color:#fdc21c;} <li><a href="#" class="active">Capabilities</a> <ul> <li><a href="#">Safety Management</a></li> <li><a href="#">Risk Management</a></li> <li><a href="#">Project Management</a></li> <li><a href="#">Business Development</a></li> <li><a href="#">Bid Support</a></li> </ul> </li> -Ben
-
edit webpage by a webpage
I would try wordpress or cms made simple - both are really easy to use.
-
A good easy CMS like blogger
You don't need to "make" any php pages. Just upload the files to your ftp and follow the installation.
-
My Business Card Design
If you after another printer recommendation, i have used: http://www.doddle.co.uk/ 1000 400gsm double sided business cards for £40.25 VAT
-
Is this attractive?
Have you had a look at sitepoint? I think you would be better charging a %. Some clients will have a budget of £xx, some will have £xxx.
-
Website not showing on Google
Google.com shows you as having 9 pages indexed: http://www.google.com/search?hl=en&q=s...mp;aq=f&oq=
-
Which Web Design Software
My advice would be to dive straight in at the deep end! If you don't know how to code then you wont be able to open up notepad and intantly code yourself an excellent website. What i would do is find yourself a free template and work from them. Learn how to change what you need to and it will be a good learning experience.
-
My Domain Name
Scott i absolutely right if it is a .uk domain, if is .com or other then you can add privacy to the whois. Some registrars offer this for free, others charge a few quick a year.
-
a:hover background color doesn't work
You don't need to use background attachment/position etc if you are only using a bg colour, these are only used when you use an image for the background