Arkinder 93 Posting Pro in Training

That's a possibility. Try this.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

If you're trying to scan your entire computer, try scanning small sections at a time.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

For example: if you positioned an element absolutely, you can either use top or margin-top . They do not stack.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

I realize this thread is solved, but I would just like to include that text for the web is rather different from physical documents. We read about 25% slower on our computers, and designers often rewrite text to a more condensed, scannable, web-friendly form. It is by no means uncommon and should be encouraged.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Just to clarify, you need to make a site that allows the user to choose the background color, language, etc?

Regards, Arkinder

Arkinder 93 Posting Pro in Training
  1. What are doing when it freezes?
  2. What application/s do you have open?
  3. Do you actually quit the application/s or just close them?
  4. How old your Mac?
  5. What version of Leopard (if at all) are you running?
  6. How much RAM does it have?
  7. How big is the harddrive, and how much space is left?

Just saying that it freezes is like going to a restaurant and telling the waiter that you would like an order of food.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

The letter-spacing property, margin, or padding.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

If I'm not mistaken, the book is simply using the blockquote element as an example of how to have two selectors in a CSS rule. Continue reading and you should find that they don't actually include the blockquote element in the .greentea rule. Yes, that would be redundant but keep in mind that both are block level elements. So one doesn't actually have to be inside of the other.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Visually yes, but no. Margin is part of the box model, while the top and left properties interact with elements a little differently, and typically require the element to be removed from the normal flow of the page.

relative-placed blocks? Do you mean relatively positioned block level elements?


Regards, Arkinder

vedro-compota commented: +++++++++ +1
Arkinder 93 Posting Pro in Training

The problem is only occurring in IE7. Modern browsers have no problem with it, so it's doubtful that there is anything actually wrong with the code. Taking apart the site would be pointless, not to mention a huge waste of time for a problem that's exclusive to a browser that's known for its many flaws.

Try removing the width and float from your #horizontal_line rule. This should allow the element to cover the entire width of the page. Is it still being moved?


Regards, Arkinder

Arkinder 93 Posting Pro in Training

Check this out.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Please keep in mind that floating an element removes it from the normal flow of the page.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

No problem, and just to clarify. Java is not JavaScript. They are two different languages. You need JavaScript.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Have a look at this.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

You're positioning everything absolutely. This removes those elements from the normal flow of the page, and therefor the z-index will not effect those elements the same way.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Flexibility, and it helps separate structure from presentation - the entire purpose of CSS.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Using tables for a layout is an outdated technique from 1996.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Alright, it looks like JavaScript is used to position the slider. Adding the drop-down menu is throwing off the height which is why it isn't working. There's probably just a portion of the JavaScript that needs to be tweaked to make this work, but JavaScript is not my forte. You could try asking in the JavaScript forum.

To make the slider extend all the way down the page, even though it's not sliding. Find this CSS rule in your code:

#myGallery,#myGallerySet,#flickrGallery{width:610px;height:500px;z-index:99;margin-bottom:20px;margin-top:15px}

and remove height: 500px; Regards, Arkinder

Arkinder 93 Posting Pro in Training

So the content slider works when the drop down menu isn't there?

Regards, Arkinder

Arkinder 93 Posting Pro in Training

It appears to be a problem with the JavaScript outputted. Start here.


Regards, Arkinder

Arkinder 93 Posting Pro in Training

Ah, you said width with an inch value. Anyways that's rather annoying. I think that the purpose of changing a resolution originated for visibility rather than quality.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

That's a good question. Inch is a fixed value, so changing the screen resolution will change the value of an inch. Try using a dynamic unit, such as percentage or em.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

The text is clearly in the code outside of any tags. Why don't you simply remove it?

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Yes, that's what I meant. Also, please remember to use code tags when posting code.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

I've been told that this may be a good idea so that the scrollbar is always displayed no matter how long the content is. However, my question still remains that this page should actually have nothing to scroll (though it still does).

This is an optional display technique which is basically useless. If the content extends past 100% of the browser window a scrollbar will appear on its own. If the inconsistency across pages bothers you, then use it.

This is because I want some gray (the html background-color) to show above the blue (the body background-color). Is this not how I would achieve this?

It pushes the body element and everything in your page, 10% from the top. You should use a division and probably margin instead.

This is because I want some blue (the body background-color) to show above the white (the whitebox background-color). Is this not how I would achieve this?

No, that's fine but in Firefox and Chrome it does nothing (on a Mac)

Should I make it a div instead? Surely that is not what is causing the page to be about 10% taller than the screen, right?

Right, but you do have another element being pushed exactly 10% from the top.

Things to keep in mind~

  1. Your footer is absolutely positioned. This removes it from the normal flow of the page. Also, there are better ways of positioning it at the bottom.
  2. Every browser has its own default margin and padding. …
Arkinder 93 Posting Pro in Training

Please post your complete markup or a link to a test page. You've only posted a small portion of your CSS, which doesn't give us a lot to work with.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

This is the HTML/CSS forum, and this is a PHP issue. Please post your question in the correct forum.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

The blog has its own set of styles that are affecting the drop down menu.

Regards, Arkinder

Arkinder 93 Posting Pro in Training
  1. The height in your html rule is set to 101%.
  2. Your body element is positioned relatively and has a top style of 10%.
  3. Your div with a class of whitebox has a margin-top: 10px;
  4. You have a paragraph containing your logo. Paragraphs create a new line both before and after the paragraph element.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

By default, each browser has its own margin and padding for elements. To "reset" this simply add a universal rule (*) in your CSS.

* {
    margin: 0;
    padding: 0;
}

As for the doctype I'm going to quote a mentor of mine,

"The doctype is the set of rules you are telling the browser you are using to create the page. Change the doctype, change the rules."


Regards, Arkinder

Arkinder 93 Posting Pro in Training

What browser are you testing in? Hanging text does not make sense. Please be more specific.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Please post the complete markup or a link to your test page. Simply telling us you want it at the top could mean several things, and wastes everyone's time.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

They're moving because 500px from the top is 500px from the top. Try a fluid style of positioning them.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

What you just described made absolutely no sense at all. Please post your code, a screenshot, or a link to a test page.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Not with HTML or CSS. Ask in the Javascript forum.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

This just made things worst. Position:absolute and margin are the only ways of positioning elements that are shown on tutorials. If there are other ways I don't know how.

I'll read some more before starting my own page. Thanks for your help.

Perhaps you're doing it wrong.


Regards, Arkinder

Arkinder 93 Posting Pro in Training

You have a span tag after Help? instead of ending your anchor tag.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

That's rather funny. There are elements with a class of html in the code, so I never bothered suggesting that or understood the question haha.


Regards, Arkinder

Arkinder 93 Posting Pro in Training

^
He said wrong thread.

He simply meant that he posted in the wrong thread. Fix the errors in your HTML as shaya suggested, and let us know.


Regards, Arkinder

Arkinder 93 Posting Pro in Training

Both .className td, th {border: 1px solid #CCC;} and .className td, .className th {border: 1px solid #CCC;} are valid. They simply tell the browser different things.

The first states that the styles should be applied to any td element within an element with a class of className , and any th element within the document. The second states that the styles should be applied to any td element within an element with a class of className , and any th element within an element with a class of className .

If that doesn't make sense I can post an example.


Regards, Arkinder

Arkinder 93 Posting Pro in Training

You've only posted the CSS. Links are placed in the HTML of the tooltip.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Use the cursor property.


Regards, Arkinder

Arkinder 93 Posting Pro in Training

Most forums use vBulletin, hence the consistant theme.

Yes, a list could work - if done properly. While this could make reading easier for screen-readers, it would have the adverse effect on web developers. Hunting through a giant list would be a lot more difficult; assuming that you coded the forum yourself.


Regards, Arkinder

Arkinder 93 Posting Pro in Training

<------------ doesn't know anything about Wordpress, but if you're accessing it through a browser.

Trying clearing your cache, reseting the browser, and/or entering safe mode (to prevent add-ons/plugins from running).


Regards, Arkinder

Arkinder 93 Posting Pro in Training

If you only want the opacity to affect the background, place the text in a separate element and position it over the background. Absolute positioning, floats, z-index, etc.


Regards, Arkinder

Arkinder 93 Posting Pro in Training

We are not here to write code for you. However, if you post a link to the site then perhaps someone can post what technique/s to Google for.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

By textbox do you mean textarea? Are there scrollbars? Are you wanting it to start at the bottom or scroll down on its own? Please be more specific when asking questions.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

The entire purpose of the overflow property is to accomodate overflow. If there is no overflow, then the property will do nothing.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

JavaScript isn't really my thing, so to be honest I don't know. However, I think a variation of this on a larger scale is what you're looking for.

Regards, Arkinder

Arkinder 93 Posting Pro in Training

Give the elements a width and height.

Regards, Arkinder