Forum: HTML and CSS Oct 4th, 2009 |
| Replies: 8 Views: 500 I still don't see a white line (1900px window). (How can there be one, the background is white.) |
Forum: HTML and CSS Oct 4th, 2009 |
| Replies: 3 Views: 554 A <p> element cannot contain another block-level element. A <p> is implicitly ended when another block-level element is encountered. Add the colours to the <ol>s directly. |
Forum: HTML and CSS Oct 4th, 2009 |
| Replies: 8 Views: 500 (I don't see a white line).
Don't use frames; use CSS. |
Forum: Shell Scripting Oct 4th, 2009 |
| Replies: 2 Views: 827 password=boom
n=0
for n in 1 2 3
do
read -ep "Code: " code
[ "$code" = "$password" ] && break
done
if [ "$code" = "$password" ]
then |
Forum: Shell Scripting May 28th, 2009 |
| Replies: 2 Views: 1,447 case $1 in
-o) shift ;;
*) set -- /dev/stdin ;;
esac
while IFS= read -r
do
: do whatever with "$line"
done < "$1" |
Forum: *nix Software May 24th, 2009 |
| Replies: 2 Views: 878 What shell are you using?
In bash:
PS1='\[\e[[7m\]${HOSTNAME}/${PWD}\[\e[0m\]'
Adjust the 7 to whatever you want, e.g., 1;31 or 1;37;40m. |
Forum: HTML and CSS Mar 26th, 2009 |
| Replies: 2 Views: 706 The first step is always to validate your page and correct any HTML and CSS errors. Your page has 551 HTML errors:
Errors found while checking this document as XHTML 1.0 Strict!
Result: 551... |
Forum: HTML and CSS Mar 23rd, 2009 |
| Replies: 5 Views: 1,073 Use Server-Side Includes, e.g.:
<!--#include file="page.html" -->
Or:
<!--#include file="header.html" --> |
Forum: HTML and CSS Mar 23rd, 2009 |
| Replies: 15 Views: 1,156 No tag can contain another tag. An element can contain another element. Elements are delimited by tags.
The P element cannot contain any block-level element, and since its closing tag is optional,... |
Forum: HTML and CSS Mar 10th, 2009 |
| Replies: 15 Views: 1,156 Lists are block-level objects, but they can only contain <li> elements; <li> elements are also block-level, and they can contain anything. |
Forum: HTML and CSS Mar 6th, 2009 |
| Replies: 15 Views: 1,156 Apart from being semantic nonsense, it requires unnecessarily bloated CSS to style the lists. |
Forum: HTML and CSS Feb 7th, 2009 |
| Replies: 10 Views: 1,002 DreamWeaver is the best of a bad bunch.
I agree with ingeva: use a text editor. Find one with syntax highlighting and automatic indentation; I use GNU/Emacs. |
Forum: Shell Scripting Jan 25th, 2009 |
| Replies: 9 Views: 1,211 Calling sed six times???? AARRGGHH!!!
If you know there are going to be six lines (or only need the first six):
{
read obyte1
read rbyte1
read snapt1
read obyte2 |
Forum: HTML and CSS Jan 12th, 2009 |
| Replies: 4 Views: 2,268 Why XHTML and why transitional?
The HTML comment hasn't been necessary since Netscape 4.
table
{
border-collapse: collapse; |
Forum: HTML and CSS Jan 10th, 2009 |
| Replies: 14 Views: 1,837 How about a URL? What you posted is not a complete page, and may not appear the same as on your page (if anyone takes the trouble to copy it to a file). |
Forum: HTML and CSS Jan 10th, 2009 |
| Replies: 14 Views: 1,837 Can you provide a URL showing the problem? |
Forum: HTML and CSS Jan 7th, 2009 |
| Replies: 4 Views: 521 I get that even with the screen maximized and even full screen.
I think that's because Geocities inserts a line before your page.
I don't think that matters, but there's no reason to... |
Forum: HTML and CSS Jan 7th, 2009 |
| Replies: 4 Views: 521 This is what I see in FireFox:
http://cfaj.freeshell.org/testing/raisin.jpg
There are also many validation errors on your page. Some of them may be unavoidable on Geocities, but they probably... |