First of all, it would be good if you could provide an URL to your blog if it is accessible from the outside so we can take a look at your progress.
FireAdmin wrote:First of all i would like to move the serach bar down below. Then i have to:
- customize buttons.
- customize any plug-ins appereance.
- background and menubar.
- giving a three-columns look.
1. Search form: Where do you want to move it to? Also (always) remember that 2k11 is a responsive theme which works differently in different screen resolutions, so you might want to specify in which resolution you'd like to move it.
2. If I remember correctly, 2k11 does not style buttons and button-like input elements at all, so you can just write your own styles for those (assuming you want all form buttons to look alike)
Code: Select all
button,
input[type="submit"],
input[type="reset"]{
/* Your styles here */
}
3. Any sidebar plugin has its own class which you can use to address them seperately, i.e. .serendipity_archives_plugin. Also, they have a common class .sidebar_plugin. (Assuming by plugins you mean sidebar plugins.) Other than that, you'd need to specify what exactly you want to customize.
4. Which background – the white content background, the grey site background, both …? As for the menu bar, that can be kind of tricky. You can always use the
user.css generator for that (it makes it pretty easy) and paste the styles generated by that into your theme's CSS file. At least it will give you an idea as to which CSS selectors to use to address the menu bar.
5. 2k11 supports 3-column layouts by default, just put sidebar plugins in both sidebars (left and right) in the backend. Should work out of the box.
YL