Forum: HTML and CSS Mar 1st, 2009 |
| Replies: 14 Views: 5,433 It's all personal prefrence. Try a few and see what you get on with the best.
Personally i recommend aptana and notepad++
Aptana featues loads of plug-ins that are really useful such as php,... |
Forum: HTML and CSS Oct 1st, 2008 |
| Replies: 5 Views: 2,303 MeTc123, is your site database driven or page driven?
What is it programmed in? |
Forum: HTML and CSS Sep 24th, 2008 |
| Replies: 9 Views: 1,474 |
Forum: HTML and CSS Sep 19th, 2008 |
| Replies: 12 Views: 2,172 heavenkid, can you copy and paste the code here? I will have a look for you and use your code as an example.
When i said don't use dreamweaver what i ment to say is it is also usful to know what... |
Forum: HTML and CSS Sep 19th, 2008 |
| Replies: 21 Views: 2,887 Ok I made this post last night and at the firm i used to work for I had to fix problems with companys websites that were outsourced again and again because of bad coding, sites had been exploited,... |
Forum: HTML and CSS Sep 18th, 2008 |
| Replies: 3 Views: 3,131 Code to standard from the ground up dottomm, enless your using an off the shelf cms, then you deserve the headaches you are getting rather than getting it done properly in the first place.
source... |
Forum: HTML and CSS Sep 18th, 2008 |
| Replies: 21 Views: 2,887 So much bad advice here. I would personally recommend getting a couple of good books before spalashing out on a corse that teaches you webdesign.
It is not as easy as some people seem to think... |
Forum: HTML and CSS Sep 18th, 2008 |
| Replies: 12 Views: 2,172 I think first of all you need to reconsider using dreamweaver. I hate it, most people i work with hate it and the people i know who use it, use code style only.
I noticed or assume the use of... |
Forum: HTML and CSS Aug 26th, 2008 |
| Replies: 20 Views: 4,638 One thing, your going to have to clean up your code and get some validation in place etc. Again if you need help with this let me know. |
Forum: HTML and CSS Aug 26th, 2008 |
| Replies: 20 Views: 4,638 Sorry i should not edit posts.
Heres the fix. Replace infected_table with the table name that is infected on your site.
use <infected_table>
DECLARE @T varchar(255), @C varchar(255);... |
Forum: HTML and CSS Aug 26th, 2008 |
| Replies: 20 Views: 4,638 I would start with the string "js.js". What database tech are you using? MsSql?
Ok i have found some good metrial now.
http://www.networkcloaking.com/ASPROX_Toolkit.pdf |
Forum: HTML and CSS Aug 26th, 2008 |
| Replies: 20 Views: 4,638 Good luck, if you get stuck let me know and i will help further. |
Forum: HTML and CSS Aug 26th, 2008 |
| Replies: 20 Views: 4,638 You have a form on your website that has been exploited. It's part of a very big botnet that automatically finds vunribiltys for asp and injects source into one of your fields. Fix the problem with... |
Forum: HTML and CSS Aug 26th, 2008 |
| Replies: 4 Views: 798 Not many screen readers actually use the alt tag because the alt tag was at one point massivly missused for seo. |
Forum: HTML and CSS Aug 22nd, 2008 |
| Replies: 8 Views: 1,146 Yeah it's not ment to be used like that! |
Forum: HTML and CSS Aug 22nd, 2008 |
| Replies: 8 Views: 1,146 Here found this, maybe both you and sree should read it, it will help you both out i am sure.
http://www.ibloomstudios.com/articles/vertical-align_misuse/ |
Forum: HTML and CSS Aug 22nd, 2008 |
| Replies: 8 Views: 1,146 Ok in that case it's not vertical-align you need to use. vertical-align will align an elements withing an inline-level or a tabel cell.
eg. If you wanted to align an image above or below a line... |
Forum: HTML and CSS Aug 22nd, 2008 |
| Replies: 8 Views: 1,146 What are you trying to achive with vertical-align? |
Forum: HTML and CSS Aug 22nd, 2008 |
| Replies: 8 Views: 2,708 Are you sure you want a visitor counter? Apart from looking really tacky they can also be very embarrasing. |
Forum: HTML and CSS Aug 22nd, 2008 |
| Replies: 4 Views: 1,456 Ok then thats easy. As long as no one has to view it in real time as well.
what database tech are you going to use? MySql? |
Forum: HTML and CSS Aug 21st, 2008 |
| Replies: 3 Views: 3,254 Ok, your complaining about ie sucking yet your still using tables for layout?
Anyway. The best thing you can do is float the fixed sized element left, postion the liquid element as relative and... |
Forum: HTML and CSS Aug 21st, 2008 |
| Replies: 3 Views: 1,038 It's very easy to accomplish this using css and html. You could use java as this is client side script, but not everyone has java switch on in there browser. Google css drop down menus, if you get... |
Forum: HTML and CSS Aug 21st, 2008 |
| Replies: 4 Views: 1,456 Dose it have to use php? Streaming in php is a bitch. If it needs to be in php have a look over at soap if your going focusing on real time viewing. |
Forum: HTML and CSS Aug 21st, 2008 |
| Replies: 12 Views: 6,219 If you must make blinking text make a gif and display the image. use the FIR method to hide the text. |
Forum: HTML and CSS Aug 21st, 2008 |
| Replies: 1 Views: 1,387 Ok first the logo, include this.
#logo {
position: relative;
top: -11px;
left: -9px;
} |
Forum: HTML and CSS Aug 21st, 2008 |
| Replies: 6 Views: 1,397 Designing a website is very much down to the personal preffrance of the designer.
The steps i take are:
1) Get everything down on paper, use a flow chart for navigation and so on.
2) Because... |
Forum: HTML and CSS Aug 21st, 2008 |
| Replies: 3 Views: 569 1) Wrap in a div and postion it as relative. Use the top, left, bottom and right css properties to postion this.
2) It's a bug in the way ie renders. Theres load of work around for this. try... |
Forum: HTML and CSS Aug 21st, 2008 |
| Replies: 4 Views: 798 There are many ways of image replacement. My favorite way:
Your html with a couple of bits added / removed.
<ul id="main_nav">
<li><a href="#" class="link1"><span>This is link... |