Change div height

Well the first problem I can see is that the code in your JSFiddle doesn’t even have a div apDiv3.

I don’t understand what it is you’re asking in your first post, so you’ll need to explain more clearly.

However, you seem to have forgotten some of the things which you learned from your other page.

  • Firstly, change charset=windows-1255 to charset=utf-8 right at the top of the page, to ensure it displays correctly. You should be able to set Dreamweaver to do this by default for all future pages.

  • Don’t use direction: rtl; in your CSS (styles). It is best practice to add that to you HTML markup… If most or all of the page is going to be rtl, then set it on the page, rather than on each individual div. If you can’t remember how, go back and look at the other page, and the topic where we discussed it.

Before we start trying to sort out the layout, please make sure you’ve added all the content you intend to add. Then we can adjust the layout to suit. Trying to do it a bit at a time as you go along is a very inefficient way of working, and often means going over the same thing again and again to adjust for new content.

(You also need to remember to give both your pages proper titles; at the moment, they’re both called “Untitled Document”. <title>Untitled Document</title>)