What editor can I use to create HTML+CSS websites?
I want something that offers good code completion and CSS color previews, plus website connectivity so I can push my files directly to my server via FTP. Is there something like this? ...
I want something that offers good code completion and CSS color previews, plus website connectivity so I can push my files directly to my server via FTP. Is there something like this? ...
I am working on some legacy PHP code that holds a ton of in-line styling, one of our objectives is to leverage CSS so the code will be cleaner. One thing that got me thinking is the use of native html elements VS the use of CSS, such as bold and italics. For example, <b>this is foo</b> Or in css .bold { font-weight: bold;} <span cl...
When my users find a great idea on my site, I want them to be able to click an "Add" button next to the idea, which opens a popup with a textarea that is pre-filled with that idea's content. The user can then edit the idea content before adding it to their to do list. I've got this jQuery function working, but if the idea content has l...
I have a <div> that I'm filling with a file name of indeterminable size. If the size exceeds the length of the <div> then I want it to be cut down and the last 3 characters replaced with a "...". Currently I have the following: <div id="fileName" class="field-row" title="<%= fileName %>"> <% if(fileName.Length > 20) { %> F...
ok so i've looked all over the place and cant find a solution that helps my case. I hope someone can help? basically i have this, and recieve "Warning: sqlite_query() expects parameter 1 to be resource, string given" relating to $dbresult line - so a problem with the query :( function Up(){ $dbquery = "DELETE FROM toolList WHERE toolI...
Hey all , I want to put a flash file in the bottom of the page like this site I used margin property & Padding but it doesn't look well . I need the code to put it in the bottom of the page thanks in advance . ...
So my questions is similar to this: http://stackoverflow.com/questions/3695435/crop-text-too-long-inside-div What I don't want to do is have a hard end to the text (chopping off whatever text overflows). The desired output would not include an ellipses (...) but would "fade" away. So if I had something like: <div class="text">This i...
Hi all, I was thinking about external HTML files, and it occured to me, that if I group the functions from several HTML pages, in one JavaScript this will lead to extra clientside processing. Basically, I would like some idea of whether this is correct. Here is my thinking. Suppose I have one JavaScript file for five pages. If the u...
something is seriously wrong with my SQLITE I included echo $dbquery to see exactly what query is being run, and the statment seems correct - but when trying to view the db after, it comes up blank! I've checked the actuall file, and theres still data in the db file, so maybe it corrupting it? the query prints as: DELETE FROM tool...
I'm working on an HTML page that needs to be more or less pixel-perfect, and I noticed that in Opera 10, fonts are rendering larger than they do in other browsers, even though the font-size is effectively the same. Please see this example page in Opera 10 and another browser like Firefox 3.6: http://troy.onespot.com/static/stack_overfl...
Hello, I have a social network that allows people to ask questions and write blogs. For some reason on the ipad, you can write a title, and choose a category, but for some reason it will not let you write in the text area where one would compose their blog or ask their question. Is there some sort of special text area that ipad wants sup...
We have an HTML page with multiple div blocks. We want to separate these div's into multiple files and then combine them all together into a single file - is it best to use server side includes (JSP in our case) or client side includes? Note that we're using JQuery - not sure if JQuery has a clever way to do the includes. ...
Possible Duplicates: Is it possible to implement the effect of overflow:ellipsis with javascript or css? How do I indicate long text into a smaller fixed column with CSS? I want to trim text if it's greater than 300px wide with "..." For example, if I had: <ul> <li>this is greater than 300px, than only display as much of t...
I want to write a program using Qt that downloads a lot of HTML web pages, about 5000, from one site every day. After downloading that pages I need to extract some data using DOM Query, using the WebKit module, and then store that data in a database. Which is the best/correct/efficient way to do that, in particular the download and anal...
I'm new to HTML and want to make semantically correct HTML, however I'm finding it hard to work with what seems to be only headings, lists and paragraphs. Particularly, I can't find a place that makes sense for subtitles. I'm writing a blog site so lets use that as an example: A BLOG TITLE the best blog in the world post_title1 post_...
I am having an issue with font settings and padding in CSS, I am a visual person and I bet you are one too, so here's my problem: http://imgur.com/Wh441.png if you can solve it I will give you an upvote :O ...
In google chrome, when an input tag is selected then appear a yellow outline around it. In other browser ( firefox, explorer, ecc ) not !! How can I add outlines on input tags in other browser ( firefox, explorer ) like chrome ?? ...
So I'm looking at http://ohiostate.bncollege.com/webapp/wcs/stores/servlet/BNCBHomePage?storeId=33552&catalogId=10001 and was wondering if there was a way I could get all of the possible classes/options for the courses in a semester. There's a class locator on the top left of the page, and it has a dynamic drop down menu. Is there an...
I was trying to absolutely position an element at the bottom of the page (not the viewport). The element is a direct child of the BODY. You can imagine the page to have lots of content so that there is a scrollbar. So something like this: <body> <img id="target" src="images/code.png" style="position:absolute;bottom:0;"/> This put t...
Hi, I have a table nested as such: <table> <tr> <td> <table>... </table> </td> </tr> </table> More precisely: some style info: div.centered{ text-align: center; height:100%; } div.centered table.centeredT { margin: 0 auto; text-align: left; max-width: 781px; overflow: hidden; height...