shifting a piece of text down using CSS

If I’m reading this correctly, then you’re trying to straddle the border between two table cells which won’t work. You’ll need to consolidate the first two cells in the right column and then rowspan=”2″ the new cell with the number in it. Then top or bottom vertically align the text in the cell and add … Read more

How do I hide the bullets on my list for the sidebar?

You have a selector ul on line 252 which is setting list-style: square outside none (a square bullet). You’ll have to change it to list-style: none or just remove the line. If you only want to remove the bullets from that specific instance, you can use the specific selector for that list and its items as follows:

How to change text transparency in HTML/CSS?

opacity applies to the whole element, so if you have a background, border or other effects on that element, those will also become transparent. If you only want the text to be transparent, use rgba. Also, steer far, far away from <font>. We have CSS for that now.

Set timeout for ajax (jQuery)

Please read the $.ajax documentation, this is a covered topic. You can get see what type of error was thrown by accessing the textStatus parameter of the error: function(jqXHR, textStatus, errorThrown) option. The options are “timeout”, “error”, “abort”, and “parsererror”.