Archive for September, 2009

Web 2.0 tools for our site

Tuesday, September 15th, 2009

Wizzard Bulgaria website has reached it second major update. Now there are automatically generated Web 2.0 tools. We included Font Increse, Font Decrease, Font Reset, Print Page, Send To Friend functionality.

In the inner pages you can also find a nice breadcrumbs to clearify the site structure and database models. Here I attach a screenshot of the integrated features, so you can easily check them out :)

Web 2.0 Tools and Breadcrumbs

Web 2.0 Tools and Breadcrumbs

Wizzard Logotype

Friday, September 11th, 2009

Here is the Wizzard logotype variations with different styles and views. These variants are for different purposes and design layouts. You can see which we use for the site :)

Wizzard Logotype

Wizzard Logotype

Breaking text line in table cell

Tuesday, September 8th, 2009

Somehow, breaking a text line in HTML table cell is not often as easy as it should be.
For example, you have specified fixed width to your table cell, but the text inside makes the cell wider… This seems to be major problem.

Normally using <br> or <br /> (HTML and XHTML version) is enough to break the text line in most recent versions of Internet Explorer(IE). The line break problem occurs in Mozilla Firefox, Google Chrome. Despite their versions, using the normal break line tag seems not to work in these browsers. The solution we were looking for was a CSS property.

So after a few attempts breaking line in a <td> we come out with this solution:

1
2
3
4
5
6
/* Wizzard Bulgaria */

table tr td
{
    white-space: normal;
}

This code make the Mozilla Firefox to break the text in the <td> according to the table cell width and where the <br> or <br /> tag is placed.