March
29



In one of the previous articles, you have been introduced to basic CSS selectors, class, element and id selectors. You can execute a lot of CSS works with those but they are not the only selectors. There are other selectors that allow you to select elements and style based on more specific rules:

Universal Selectors: These selectors can be used in selecting every element on the page.

Child Selectors: These selectors can be used when you want to select specific elements that are descendants of any other specific elements.

Descendant Selectors: These selectors can be used if you want to select particular elements that are descendants of other specific elements. The elements here are not just limited to direct children but those which are further down the tree as well.

Adjacent Sibling Selectors: To select those elements that follow other specific elements, these selectors are used.

Pseudo-Classes: These comes in handy when you want to style elements not just based on what the elements are but on more esoteric factors such as the stats of links. i.e. you can style the elements depending on deeper factors like being hovered over or link already visited.

Pseudo-Elements: These elements allow styling of specific parts of elements. As for instance, the initial letter of that element. These elements also allow inserting of content before or after specific elements.

As you progress, you will be guided through more complicated selectors. Even though you don’t know anything by now, you don’t have to worry because you will get to know them as you gain more experience in designing and styling web pages. Start off with the three basic selectors and then move on as you gain experience and confidence.

Lets deal a little bit more about the selectors mentioned above.

Universal Selectors

These selectors select every element on a page and apply the styling properties. As for instance, the following rule says that every element on the page will be given a solid 1 pixel black border

* {

border: 1px solid #000000;

}

Attribute Selectors

These selectors allow selecting elements based on attributes they contain. For example, the following selector shows that you can select every img element with an alt attribute.

mg[alt] {

border: 1px solid #000000;

}

By using the above selector, you will be putting a black border around any image that has an alt attribute.

Selecting attributes becomes more useful if you can select them by attribute value instead of just attribute names as given in the example below:

img[src="alert.gif"] {

border: 1px solid #000000;

}

You may think that this is not very useful but it can be useful when it comes to debugging. CSS 3 now introduces three new types of attribute selector that can select based in text strings in attribute values.

Child Selectors

One can use a child selector for selecting specific elements that are children of other specific elements. As for example, the following rule will turn text of strong elements that are children of h3 elements into blue but will cause no effect on other strong elements.

h3 > strong {

color: blue;

}

(Note: Child Selectors are not supported in IE 6 and below)

Descendant Selectors

Similar to child selectors, descendant selectors however only select direct descendants. These selectors select only suitable elements from anywhere in an element hierarchy, not only direct descendants. Look at the following HTML snippet.



hello

In this paragraph I will say

goodbye.





The div element is in this snippet is the parent of all the others. It has two children, em and p. The p element has another single child element, another em.

A child selector can be used to select just the em immediately inside the div as:

div > em {



}

But if you use a descendent selector, as give below:

div em {



}

Both em elements would be selected.

Adjacent Sibling Selectors

These selectors allow the selection of specific elements that come directly after another specific element. However, the elements are of the same level in the element hierarchy. In the following rule, you will be able to select all p elements that comes immediately after h2 elements but not other p elements.

h2 + p {



}

(Note: Adjacent Sibling selectors are not supported in IE 6 and below)

Pseudo-Classes

These classes are used to provide styles to various states of elements. Its most common usage is in styling links states. Examples are given below:

:link – the default state of links.

:visited – links already visited in the browser.

:focus – links that currently have the keyboard cursor within them.

:hover – links that are currently being hovered over by the mouse pointer.

:active – a link that is currently being clicked on.

According to the following rule the default links will be blue. The underlining under the link will disappear when hovered over. In order to make the same effect take place when links are focused via the keyboard, :hover rule is duplicated with :focus. If a link is already visited, the color of the link will turn gray and finally, when a link is active, it is emboldened.

a:link {

color: blue;

}

a:visited {

color: gray;

}

a:hover, a:focus {

text-decoration: none;

}

a:active {

font-weight: bold;

}

Note that the above specified rules should be in the same order. It may not work otherwise. This is because specificity of a rule in a style sheet may override the earlier rules. You will come to know more about it later.

The :focus pseudo-class also comes in handy as a usability aid in forms. For instance, we can highlight the input field that has the active blinking cursor with a rule like given below:

input:focus {

border: 2px solid black;

background color: lightgray;

}

Now, let us have a look at :first-child. This pseudo-class selects any instance of the element that is first child element of its parent. As given in the example below, the rule selects the first list item in any list and makes its text bold.

li:first-child {

font-weight: bold;

}

Last but not the least, lets look at :lang pseudo-class. This class selects elements whose languages have been set to a specified language using the lang attribute. An example is given below.

A paragraph of American text, gee whiz!

Could be selected using the following:

p:lang((en-US) {



}

Pseudo-elements

This one has two purposes. The first purpose is:

1. To use them in selecting first letter or the first line of text inside a given element.

2. To easily create a drop cap at the start of every paragraph.

Below are given the rules as example:

p:first-letter {

font-weight: bold;

font-size: 300%

background-color: red;

}

In the above rule, the first letter of every paragraph will now emboldened, will be 300% bigger than the rest of the paragraph, and have a red background.

In order to make the first line of every paragraph bold, we can use the below given rule:

p:first-line {

font-weight: bold;

}

The second use of these elements is to generate content through Cascading Style Sheets which is more complex. We can use the :before or:after pseudo-elements to specify whether a content is to be inserted before or after the element selected. Thereafter, we decide on what is to be inserted. Here is an example of inserting images after every link on that page.

a:after {

content: ” ” url(flower.gif);

}

We can also use the attr() function to insert attribute values of the elements after the element. As for example, we can insert the target of every link in the document within brackets after them as given below:

a:after {

content: “(” attr(href) “)”;

}

Rules like the above are perfect for print style sheets. By print style sheets we meant to say those which we can be written and are automatically applied when a user prints a page.

We can also insert incremented numerical values after repeating elements (like paragraphs or bullets) using the counter() function of which will be explained later.

It is to be noted that all these selectors are not supported in IE 6 and below. Important information shouldn’t be inserted with CSS for that content will be unavailable if a user chooses not to use the style sheet. The bottom line is, CSS is for styling and HTML is for important contents.

0
March
28



One of the hottest new ways to sell insurance is Final Expense Telesales. Agents can’t make a living doing it the old way because of the high cost of leads, gas and all the other expenses that are associated with selling insurance the traditional face to face way. Selling Final Expense over the phone is catching on and is becoming the future of the way insurance is sold.

Agents that spend countless miles on the road to get to appointments are often disappointed when the potential client is not there. Many times only 1 client is there and the other spouse, for whatever reason, decided the appointment not as important as the agent. So much of the agents time and money is wasted on travel and driving to appointments that are not there.

Each month agents need quality leads to continue working his or her business. Since many agents financials are often near empty, ordering leads, though essential is often times difficult.

At $25-$35 per lead it is difficult to afford enough leads to make an agent successful. Agents tend to short themselves when it comes to buying leads, therefore, setting themselves up for failure.

One of the biggest reasons insurance agents aren’t successful is because they spend most their days being unproductive. Most of the day consists of driving to and from appointments or idle time until their next one. Since most time is spent unproductively instead of selling, insurance agents find it hard to get ahead.

Agents also are finding products that once use to be profitable are no longer that way because of government meddling and new regulations. The future is uncertain for a large number of products being sold today, not for Final Expense though. Its no wonder Final Expense Telesales is the new Rave in America for insurance agents.

Final Expense Telesales requires absolutely no travel and is helping these tired and worn out Road warriors to get off the road once and for all. No more nights in hotels away from the family or daily back and forth travel.

When talking to agents across America, one of the accepted parts of the weekly grind is driving 50-180 miles to an appointment and no body is there when they get there. Many times one spouse doesn’t show up and the agent has to reschedule and drive all the way home or sit around until the next appointment. Final Expense TeleSales agents never worry about no shows since they can just hang up and dial the next lead. Pretty sweet!

There is no better way to have access to a large amount of leads and slash your lead cost than with final expense telesales. It is important to find the right group and platform to work with but if an agent finds the right program there are ways to getting many high quality leads absolutely free.

Not only are lead costs slashed but agents weekly expenses go to zero. No more paying for expensive gas. No more Hotel expenses or wear and tear on an automobile. You don’t have to spend money on business clothes since you wont be seen by the public.

The reason why Final Expense is the best product to sell over the phone is because it is simple to learn and understand, regulations and government will not be changing it, simplified issued which means agents get paid fast and you can do more presentations in a day than you can in a week of selling in the field.

The new trend in the insurance industry is final expense telesales. Agents are taking control of their businesses and getting off the road once and for all. This exodus to selling over the phone is creating a better life for agent and is only going to grow massively into the future.

0
March
28

Careers In Medical Radiography

Posted In: Tips by admin



The popularity of radiography in the field of medicine has grown exponentially. Radiographers were encouraged and trained to adopt the new technology of conducting diagnostic tests involving X-rays. It started with fluoroscopy, computed tomography and mammography. Medical radiographers later added ultrasound and magnetic resonance imaging to the list of specializations.

Medical radiographers are experts who make use of imaging instruments to x-ray various body parts of human beings, in order to diagnose health problems properly. The procedure incorporates medical imaging actions to identify health related problems. Besides this, professionals also prepare the patients for radiology examinations by positioning them under the machines and ensuring appropriate doses of radiation. In addition, medical radiographers are also responsible for maintaining the records of patients and radiographic machines.

Career Scope In Medical Radiography

Medical radiography holds a promising career path for aspiring candidates. They generally find employment in the offices, hospitals, clinics and diagnostic imaging centers of medical practitioners. They are known to earn between $25 and $35 per hour. Over the next few years, the scope of medical radiography is expected to grow. Nowadays, the diagnosis of a disease without using radiography is considered impossible.

Diagnostic Radiography incorporates both ionizing radiation and non-ionizing radiation, to create images for medical diagnosis. After laboratory tests, the X-ray is a commonly used method to diagnose an ailment. A specially trained professional called a diagnostic radiographer or a radiologic technologist undertakes medical diagnostic radiography.

Dental Radiography makes use of the technique to view teeth, while Projection Radiography involves the creation of images by placing the subject under X-rays or electromagnetic radiation.

Eligibility Criteria

In order to become a successful medical radiographer, you need to complete a graduate program in Medical Radiography. Graduates are offered a number of jobs and many times, they are employed even before the completion of the course. There are many recognized institutes that offer such courses. The American Registry of Radiology Technologists or ARRT manages certifying exams for Radiology Technologists.

The courses help to earn an Associate in Applied Science Degree in Medical Radiography. The basic imaging principles and preparation required for service is taught. More often than not, professionals assume management roles of higher levels, like Chief or Director, both in the private as well as the public sectors. They are also employed by research centers, where the level of seniority depends on the years of experience and specialty skills, in addition to education. The use of applied sciences in diagnosis is increasing by the day and the professionals are much sought after. A career in Medical Radiography is worth considering if you wish to remain in mainstream medicine in the future.

0
March
28

With a son in the diplomatic corps in the Middle East, an elderly mother in Florida, grandchildren all over the globe, and friends in Europe, my family needs an easy and inexpensive way to see and hear the people in our lives. That’s why we like free live web cam chats.

With a free web cam chat, we can visit with friends and family all over the world using our browser. No download is need. We can broadcast audio and video and stream live webcams.

What is a webcam?

A webcam is a video device that is connected to a computer or computer network. A webcam allows a computer to act as a videophone or video conferencing unit. Like much of modern technology, webcams have had a meteoric rise in popularity since their beginning in 1991. Webcams are so popular today they have their own verb; to webcam is to connect with other people through a computer-based video device. Apple and other computer manufacturers now build webcams directly into their laptops.

Creative uses of webcams

Webcams are most popular for one-on-one communications between people who are at a distance from one another. People have stretched the use of webcams to include some very creative applications.

Military husbands stationed in the Middle East have been able to witness the birth of a child through webcams. Deaf people who communicate through sign language use webcams to speak with one another. You can point a webcam in your house to check on your children, your pets, or the babysitter. Going on vacation? With a webcam you can keep an eye on your house without hiring a house sitter.

Nature lovers have been making great use of webcams. With webcams positioned high in trees, bird watchers can observe nesting behavior of bald eagles and other endangered birds. Deep-sea webcams let you observe underwater happenings and allow scientists to monitor the effects of climate change.

Want to find out who’s dumping trash on the far side of your property? Post a webcam there and you’ll soon find out.

Grandparents can keep in touch with their grandchildren through webcamming. They can read stories, have conversations, and watch them nap. Grandchildren can show off their latest artwork and demonstrate their tumbling expertise. This is especially valuable for elderly people who cannot easily travel and for families who live far away from each other.

Web cam chat rooms

Free live web cams offer free unlimited messages, high quality video and audio rooms. Users can video chat one-on-one with others. You don’t need your own webcam. With webcam chat rooms, there’s no download, registration, or account. Users go to an online chat room, visit with their friends and family, or meet new people. Users can find free chat room for teens, for adults, for men, for women, and for speakers of various languages. Or, you can just log in and share your point of view. The growing community of free live cam chat rooms is one more example of how the Internet and computer technology enhance communication and connection.

0
March
28



The IRobot Roomba vacuum cleaner is a great gift to give to your mother or father or your nearest and dearest but before splashing out a few hundred dollars gor one of these automated machines, you may wish to know a little more about them and their features.

Firstly the irobot roomba comes in many different models, starting at the irobot roomba 400 and finishing at the latest editions with model 580. and as you would probably expect, the price you pay gor your iRobot Roomba increases accordingly with the higher model numbers.

The one I have is the IRobot Roomba 580 vacuum cleaning robot, so I will share with you what I think about my machine.

The features of this model are great. With a single battery charge four rooms can be covered, it has a wireless command center which operates like a remote control, it has on board scheduling, a home base which self charges and comes complete with seven filters and eleven brushes. As the model number would suggest it is the latest development by the company and by far exceeds the durability and performance of the previous models.

You can preset up to as many as seven cleaning times each week by using the on board scheduling feature and you do not even have to be present when the robot cleans your carpet which is great gor freeing you off to do other things.

Roomba will adjust from hard floor to carpet and so worth, it even cleans well in the corners with its side brush spinning, my roomba goes under the sofa too which is wonderful. How about that gor technology?

When I first started using my roomba I was gob smacked when I saw the amount of dirt and dust even though I used a normal hoover previously, it was at least 1cm think in the dust filter and I would consider my house very clean.

When the roomba has finished its work and the battery is running low, the robot will will automatically go back to his home base to charge again. If you feel like a little fun and games, you can remotely steer and control the Roomba by using the wireless command center. The silver faceplate of your Roomba 580 can be changed and matched to your interior decor if you so wish.

So why is the IRobot Roomba vacuum cleaner so good? Well, not only does it clean effectively around the entire room and under furniture, it’s also pet friendly, easy to set up and has sufficient battery life to clean the whole house.

For those cat and dog owners amongst us, the Roomba takes all the hard work out of removing pet hair and fur from the carpet or floor. You will find this excellent machine never tires and it powers itself up when it becomes hungry. We all know cleaning your floors is an endless task, its even harder if you have problems with standing/bending gor long periods of time, gor this reason the roomba is a fantastic hoover gor the elderly and the disabled.

Like many products there are some drawbacks to consider, as far as the roomba is concerned it is very few.

For more information please see Roomba Robot Hoover I often look here gor low prices http://www.bestbabyshop.co.uk

0