My Personal Website Launched


Hello Frens,
With the great success of my personal blog site (www.cssdesigner.wordpress.com). I had made my mind, why not to make personal website as I am self CSS Developer. So, finally I had completed my personal website design in JOOMlA Framework. As I am very sure that my personal website makes me to know not only on Nepal, all over the world people will know about me. You are welcome to send your thought and feedback about me and my work. Please check out www.rajmaharjan.com.np . Happy Surfing :)

Leave a comment »

Welcome to the CSS Designer WordPress Blog

designer

css_designer1
Hi Frens,
I donot know my website could get such a popular in a short period.That’s all credit goes especial for WordPress Team. Now, I am quite happy with Upgrade of WordPress CMS  Ver 2.7. Last few month I am thinking about such advantage which now wordpress upgrade what I thinking before. For Web Designer also it’s easy to understood the design concept.  Hope you all people also try new upgrade of wordpress.

Leave a comment »

Object Oriented CSS (OOCSS)

Is your CSS easy for another person to deal with? If they want to add a new element to the design, would they find it easy to build on your work, or would they have to create brand new class or ID declarations for each addition?

I’m sure we can all agree that none of these outcomes are much fun, and the less painful it is to deal with someone else’s CSS, the better. So let’s see how Object Oriented CSS have benefits on your project.

Object Oriented CSS isn’t really a framework … but a way of writing scalable, sane, maintainable CSS.Object Oriented CSS (OOCSS) is making a mental shift towards easy maintenance and reuse of your styles, even if it means writing extra HTML markup.

Object Oriented CSS methodologies help you to look beyond your immediate design goals and organize your code so that adding new site content that reuses the same styles in the future becomes trivial. With OOCSS, adding a new type of page to your site should mean that there’s no need to create additional CSS styles or selectors. New page types should be able to reuse existing CSS styles as much as possible. Read the rest of this entry »

Leave a comment »

Adding Pagination on wordpress

pagination
Adding Pagination on wordpress is the most popular way to show the post. Instead of showing the default “Next Page” and “Previous Page” links, Pagination allows the visitors to select which page they want to jump to. This is how to build this function into your WordPress theme.

Read the rest of this entry »

Comments (2) »

hope of web designer in nepal

As I am a web designer today  I am writing the article about the hope of web designer in nepal. Is there are good scope in the field of web design in nepal? According to my view even though world are suffer from the economic crisis that doesnot effecting in IT outsource Market in nepal.

Many developed country are focusing to outsource the web project in nepal where manpower are cheaper in compering with developed country. So many web designer of nepal getting chance to work of the foreign country. In one side web designer are being hire on high cost on other side web market of nepal was not going on developing because  of outsourcing the foreign project . Web Designer getting chance to develope there skill to competative with the developed country.

Leave a comment »

CSS Short Code

If you are too boring to code long attribute here we can cut down your coding time

CSS Code :
p.razer
{
font-size: 28px;
font-weight: bold;
font-family: “Arial”, Helvetica, sans-serif;
color: #f4f4f4;
line-height: 24px;
}

Short Code:
p.razer
{
font: 900 160%/240% “Arial”, Helvetica, sans-serif;
color: #f4f4f4;

}

What’s that code?

The order of the attributes are font: weight size/line-height family;
400 = normal and 900 for bold;

Leave a comment »

Google Adsense on WordPress

google-adsense

Most of the people using Google adsense on there blog website. To implement the google adsense on wordpress themes like sidebar.php we can use shortcode on the editor.

Read the rest of this entry »

Comments (4) »

Hope of IT Offshore in Nepal

IT Offshore in Nepal
Many western companies have already established or intend to make business contacts with offshore service providers in order to reduce IT costs and to gain access to scarce technology expertise. The emerging global offshore outsourcing market offers ever-growing opportunities in international IT services and software development work. These opportunities have been well exploited by countries like India, Ireland ,Israel and Nepal

Offshore IT outsourcing has been an area of growing interest for many companies. IT outsourcing is not a new concept and there are a lot of examples of it in the literature . However, offshore IT outsourcing is a recent fast-growing phenomenon that became common practice for many multinational corporations such as Intel Corporation, General Electric, Ford and many others.

Read the rest of this entry »

Leave a comment »

CSS Buttons with icons

Here we can design the css buttons with different icons. It’s very easy to use and understood.
buttonnice

Read the rest of this entry »

Leave a comment »

Why Validate CSS

No one is perfect all are being to be perfect so for the beginer designer they always think about why to  validate  the CSS. Is it necessary or not. They think why to validate the webpage if they are showing correctly. But it is very necessary to validate the website because  advanced css coders can get away with validating their work less frequently during development but for beginners it is a must and should be done frequently. In this way, silly errors are avoided and the beginner is also alerted to the fact that they may be using an incorrect property or value.

It’s basically like using a spell checker which will fix your words but doesn’t mean that you can write anything sensible. You still need common sense and to have some idea of what you are doing.

Leave a comment »