Theme like Admin Drupal 7 - drupal

I want a theme for Drupal like this:
http://themeforest.net/item/webpro-admin-dashboard-template/7372284
But this template does not help me because only have HTML files, not is a Drupal's theme easy for install.
Anyone know how to install it or there is another similar theme?

Try Adminimal. It's pretty close to your criteria : Adminimal Theme official link

Unless you get an out of the box drupal theme the only way is for you (or someone else if you are willing to pay someone) to create a drupal theme based on that theme.
You can likely reuse a lof of the markup and css from the theme you like but there will still be a lot of work to make a drupal theme from it.
As for other similar themes, I don't know. There possibly are, you'll just have to look around. Stack overflow isn't really for theme suggestions, it's for programming questions.

Related

Wordpress Custom Theme - Applying Updates

I haven't been able to look this information up online. Perhaps I am not searching correctly.
I'm looking for information on the best practices. I have a custom built Wordpress theme that I want to implement on several similar websites. On each of the websites, I then intend to implement a child theme so that parts of each site can be customized, while still utilizing the parent theme.
I don't want my parent theme to be downloadable for other users, just myself.
I'm sure that "copying and pasting" the main theme from one of the sites to the others isn't best practice, because if an update needed to be made, I'd have to do it across all the sites. Ideally, I'd like to able to apply an update, and then within the dashboard of each of the sites, just "update" the theme.
What would be the best practice for this? Or am I misinformed about how this all works? Any insight would be appreciated.
You can perhaps try multisite - https://codex.wordpress.org/Create_A_Network.

Convert Magento theme to wordpress theme?

I had a Magento theme downloaded and i want to use it to my wordpress site. I searched wordpress version of the theme but no luck. Is there a way i can convert magento theme to wordpress theme?
There is no automatic way to do that, you will need to migrate your theme manually, with that I mean, you will need to code the theme in WordPress.
There's no way of magically rewriting a Magento theme into a Wordpress theme.
Like Enrique said, you will need to recode the entire thing.. well, almost, at least. This really depends on whether or not you simply want them to look the same or to actually be structured identically. The former is easier.
You can most likely salvage the majority of the skin folder, especially css and js. Then it's a matter of matching up Magento element names to corresponding Wordpress element names. An example might be .button and .btn.
As far as the structure, you may want to simply view source on the theme as it renders on the actual site, grab the source and do some heavy analysis. Figure out which portions render in the header, content and footer and try to piece them into the corresponding Wordpress files. It's a daunting task but believe it or not, I've done similar things before.
Note that Wordpress is nowhere near as complex in terms of application structure as Magento, so you'd really be dumbing down the Magento theme to accomplish this.
To convert your theme unfortunately you will have to manually rebuild it line by line for Wordpress. You said that you could not find the wordpress version of the theme but if possible the theme vendors might have HTML or PSD versions of the theme which would be a much closer starting point than Magento to Wordpress conversion.

RapidWeaver Theme to Drupal6 Theme

I am working on a site which has a RapidWeaver Theme ( f_fusion ). But I am more of a developer than a designer. Is there any way for us to convert a RapidWeaver theme easily to a Drupal6 theme so that all the styling remains the same ?
Yes, it's possible, particularly if you're a developer since it's really a question of taking the HTML & CSS from the RapidWeaver Theme and placing Drupal variables in it.
Start with checking this link to get an overall idea about Drupal Theming
When you know how to create a basic theme structure, you should learn how to modify the page.tpl.php file to start with, after that it will of course depends on the specifics of your site but you definitely should be on your way.
If you want to dig deeper, check this book: Pro Drupal Development

Using an admin theme with an already installed theme in Wordpress

All,
I recently bought the following admin theme:
http://themeforest.net/item/white-label-a-full-featured-admin-skin/270758
I also already have the following theme installed and am using it on my website:
http://themeforest.net/item/alyeska-responsive-wordpress-theme/164366
I want to use some features of the first admin theme but not have any issues with the already existing themes that I have installed in Wordpress.
Does anyone know how to use an Admin theme and the features in it without affecting the current shortcodes, css, etc that I'm already using on my own site?
Thanks for any help in advance!
I'm sorry to tell you, but that admin theme you bought is not for WordPress. It's meant to be an HTML start to a backend of a web application.
UPDATE
Alternatively, I'm not sure if you're meaning to take some things from the admin theme and using them in your WordPress theme. If so, please be sure to be more clear in your question as to what you want to do.
No, there are no real WordPress admin themes. The dev cycle changes the admin styles and functions very regularly, with major changes every 3 months or so. This would break any admin themes and makes it a nightmare to maintain, thus no ones does it.
ps. You can change some basic styles like colors/logo and if you know what you doing a bit more. But the link you showed, there is no way, unless you plan on never updated your install , ever.

Blank Theme for Wordpress

I need to build a new WordPress site form scratch. So I guess I need a blank theme to do that. I need to know where I can find such a theme like that, and I need a tutorial that can help me to create my first WordPress theme from scratch.
I'm new in that world. So please I need your help.
If you're starting with no WP knowledge, I believe you're better off modifying a blank theme than you are creating one from scratch.
Here is a great tutorial I used when I started doing custom themes. The HTML is getting outdated semantically, but it will teach you all working parts of a WP theme.
As a starter theme I use HTML5 Boilerplate which is full of quality HTML5 and additional features like file caching, cross-browser readiness, mobile device readiness, and file caching, to name a few. Also it's got a minimal default styling.
You may also find the wordpress site helpful. Cheers.
starting with twentyten or twentyeleven isn't a bad option either.
Whatever theme you choice make it a child theme.
It may seem like something complex at first but it will make things easier along the way.
Theme Hybrid has a great blank theme: http://themehybrid.com/themes/skeleton
I have a starter theme on github that was originally based off html5 boilerplate that you can check out.. https://github.com/FernE97/html5-blank-slate

Resources