Support » Fixing WordPress » Want to create human resource website ?

  • Is there any plugin or theme to make human resource website .. with wordpress ?
    I want my website to have a section to the employees and there missions, also a section for employees tasks .

    any help would be appreciated
    thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • The question is too general. Start from the following link:
    http://codex.wordpress.org/Getting_Started_with_WordPress

    Yes, this is possible.

    You can work with the default theme and Google for: WordPress Child Theme.
    This will explain exactly what actions you need to take in which order to make an update safe version of the default theme.

    Your content will perhaps go into Pages and / or which you can write from the Dashboard once everything is set up properly.

    Google how to use Firebug on the front end of your site (to identify the “css address” of that specific part of the website and then address this in your child themes css file. Here´s an example:

    You want a box called sidebarXY ( <div id=”sidebarXY”> Content </div> )
    to have a fixed width and a background color then you would type this into your css file:

    #sidebarXY {
    width:200px;
    background:#FFFFFF; // Or any other color
    }

    Same with ANY other item on the site. Notice that div classes are addressed with a . rather than the # symbol. But Firebug will tell you that…

    I hope that helped a little bit. Other than that Google is really helpful!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Want to create human resource website ?’ is closed to new replies.