About Bluez Theme
=================

Bluez is a corporate look 960px fixed width theme. The theme is not dependent on any core theme. Its very light weight for fast loading with modern look.

It covers,
- Simple and clean design
- Fixed width (960px), 2 Column Layout
- Drupal standards compliant
- CSS based Multi-level drop-down menus
- Custom and configurable JS Slideshow
- Customized templates includes configurable Welcome, Promoted blocks
- Use of Google Web Fonts

Bluez Theme Settings
====================

Following configuration options are available at theme settings page.
(appearance -> Settings for Bluez theme)

1. Breadcrumb : Display On/Off
2. Slideshow : Display On/Off,
Title, Description, Image configurations (Front Page only)
3. Social Icon : Display On/Off, URL configurations
4. Welcome Text : Display On/Off,
Title & Description configuration (Front Page only)
5. Promoted blocks : Title,
Description for three column block (Front Page only)
6. Footer Options : Display On/Off Copyrights and Developed By Information

Drop-Down-Menu Support
================
To Enable drop-down menu,
Select "Show as expanded" from menu items's setting

Screen Shot of Theme
==============

Project Page :
================
https://drupal.org/sandbox/UjvalShah/2024853

Link of the repository :
================
git clone http://git.drupal.org/sandbox/UjvalShah/2024853.git bluez

Version : Drupal 7
================

Reviews of other projects:
================
https://drupal.org/node/1929850#comment-7119686
https://drupal.org/node/1924326#comment-7119352
https://drupal.org/node/1703064#comment-6436524

Comments

Ujval Shah’s picture

Issue tags: +PAreview: review bonus

PAReview: review bonus Tag Added.

mayank-kamothi’s picture

Status: Needs review » Needs work

Hi Ujval,

Manual Review:

At footer:
When i hover on power by drupal. i am not able to read Drupal due to it's hover color is black.
same issue is at Designed & Develop by Ujval Shah when i hover mouse on Ujval Shah it's not read able.

In slider.js file:
Remove one space at line 51 to 55.

Other wise themes looks good for me.

Thanks,
Mayank

Ujval Shah’s picture

Status: Needs work » Needs review

@mayank-kamothi : Thanks for your feedback.

Requested Fixes are solved, please verify.

Thanks,
Ujval

klausi’s picture

Assigned: Unassigned » dave reid
Status: Needs review » Reviewed & tested by the community
Issue tags: -PAreview: review bonus

It appears you are working in the "master" branch in git. You should really be working in a version specific branch. The most direct documentation on this is Moving from a master branch to a version branch. For additional resources please see the documentation about release naming conventions and creating a branch in git.
Review of the master branch:

  • Coder Sniffer has found some issues with your code (please check the Drupal coding standards).
    
    FILE: /home/klausi/pareview_temp/css/style.css
    --------------------------------------------------------------------------------
    FOUND 2 ERROR(S) AFFECTING 2 LINE(S)
    --------------------------------------------------------------------------------
     719 | ERROR | Expected 1 space before opening brace of class definition; 0
         |       | found
     720 | ERROR | Expected 1 space after colon in style definition; 0 found
    --------------------------------------------------------------------------------
    
    
    FILE: /home/klausi/pareview_temp/js/slider.js
    --------------------------------------------------------------------------------
    FOUND 1 ERROR(S) AFFECTING 1 LINE(S)
    --------------------------------------------------------------------------------
     36 | ERROR | Whitespace found at end of line
    --------------------------------------------------------------------------------
    

This automated report was generated with PAReview.sh, your friendly project application review script. You can also use the online version to check your project. You have to get a review bonus to get a review from me.

manual review:

  • bluez.info: description should be on one line.

But otherwise looks RTBC to me. Removing review bonus tag, you can add it again if you have done another 3 reviews of other projects.

Assigning to Dave Reid as he might have time to take a final look at this.

Ujval Shah’s picture

Issue tags: +PAreview: review bonus

Hello Klausi,

Thank you for your feedback and RTBC.

-------------
Here are more review i have done after your comment :
https://drupal.org/node/1986548#comment-7566347
https://drupal.org/node/2023203#comment-7566411
https://drupal.org/node/1989736#comment-7566531

So, as per your suggestion i am again adding review bonus tag.
-------------

Code Sniffer changes are fixed.

-------------
Description to bluez.info is updated.

-------------

Successfully, Created and Setup Branch 7.x.-1.x and deleted master branch.

Thanks,
Ujval

itapplication’s picture

Assigned: dave reid » Unassigned
Status: Reviewed & tested by the community » Needs work
StatusFileSize
new542.8 KB

Hi Ujval,
I downloaded your theme and tested it manually on my localhost XAMPP server. Huge amount of good work you had done. Nice work ! keep it up.

I like theme much more if you think below changes appropriate.

I just tested your theme with 2 column option and single column option(What if web developer want only 2 columns or single column). I found that image stretch for 100% which not looking good. Please see attached screenshot. It will be better if you remove css cod of line number 685 of style.css width: 100%; for .column img

Except above minor things theme is excellent! cheers!!!

itapplication
(Shiv)

Ujval Shah’s picture

Status: Needs work » Needs review

Hi itapplication,

Requested changes are fixed.
For Promoted Area also provided more robust image management to display image on top or in-line.
Detailed information is added for same in README.txt and theme settings page.

Thanks,
Ujval

klausi’s picture

Status: Needs review » Fixed

Since comment #6 was not an application blocker and this was RTBC for more than a week otherwise ...

Thanks for your contribution, Ujval Shah!

I updated your account to let you promote this to a full project and also create new projects as either a sandbox or a "full" project.

Here are some recommended readings to help with excellent maintainership:

You can find lots more contributors chatting on IRC in #drupal-contribute. So, come hang out and get involved!

Thanks, also, for your patience with the review process. Anyone is welcome to participate in the review process. Please consider reviewing other projects that are pending review. I encourage you to learn more about that process and join the group of reviewers.

Thanks to the dedicated reviewer(s) as well.

webevt’s picture

Status: Fixed » Needs work

Hi Ujval,

PAReview script did not managed to find any issue of code style. That's good.

So I installed your theme manually and tried to form my user experience.
Advantages:

  • Theme is simple, so looking lightweight and good.

Disadvantages:

  • There is no link/menu is shown for user. I can log in only on the page /user when I go to it directly. When I'am logged in, still no "Account" link or somewhat else is shown. Maybe this is not important and sure can be added manually afterwards, but this can confuse inexperienced site builders.

Manual review of template.php file:
Lines 34-43:

if (drupal_is_front_page()) {
  drupal_add_js(drupal_get_path('theme', 'bluez') . '/js/slider.js');
}

/**
 * Add Google Fonts.
 */
function bluez_preprocess_html(&$variables) {
  drupal_add_css('http://fonts.googleapis.com/css?family=Open+Sans', array('type' => 'external'));
}

Why do you add JS-file here out of all functions and not in the function in which you add CSS-file (in bluez_preprocess_html(), line 42)? I.e. this can be done like this:

function bluez_preprocess_html(&$variables) {
  drupal_add_css('http://fonts.googleapis.com/css?family=Open+Sans', array('type' => 'external'));
  if (drupal_is_front_page()) {
    drupal_add_js(drupal_get_path('theme', 'bluez') . '/js/slider.js');
  }
}

Regards

webevt’s picture

Oh, I'm sorry I was making review for 30 minutes and didn't noticed that klausi already set 'fixed' status for this application.
What status should be set now? :-)

klausi’s picture

Status: Needs work » Fixed

Just back to fixed :-)

Ujval Shah’s picture

Hello klausi,

Thank you for your review and allowing full permission to my project.

Thanks,
Ujval

silver702’s picture

Hello Ujval,

I have installed Bluez theme for 2 days (direct on server) and now i have a big problem.
I tried to modify the 3 slides images from the banner (with the same size and name) and the website has crashed and i see only this ":)"
I'm disappointed... do you have any solution ?

Please reply me soon as possible!

Ujval Shah’s picture

Hello Silver702,

I have just tested on my server again and it is working properly.
There is no issue after i change the images of the slider.

Also there is no code or any text written in the theme ":)", there has to be something wrong from other area. I have send you message on your contact form and shared my contact details, you can contact me on the same.

Note : This thread is different, if you have any issue related to theme, please open them as separate issue under the project.

Thanks,
Ujval

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

crispinds’s picture

StatusFileSize
new171.97 KB

Hey there! Wonderful theme, and very simple easy setup!

When I created a nested menu system to use the drop down menus, I click on the parent link which has the nested links and the above link disappears?

I took a screenshot to illustrate.

itapplication’s picture

@crispinds,
You need to create issue or report bug on project page, not here.
URL of project page is https://drupal.org/project/bluez

@Ujval Shah,
Be aware if user post issue at wrong place and inform theme about your project issue queue.

Ujval Shah’s picture

@crispinds;

i have provided you solution through the contact form, also solution is added to latest commit of same version. If you still find any issue please open them as separate issue under the project - Bluez.

@itapplication;

I already aware : see my comment on https://drupal.org/node/2024875#comment-7613959

Ujval Shah’s picture

Note : This thread is different, if you have any issue related to theme, please open them as separate issue under the project - Bluez.

nikhilbhartiya’s picture

@ujval shah : I am also having the same issue with drop down menus as "crispinds" described. Please help .

Ujval Shah’s picture

@nikhilbhartiya; the last updated package doesn't have any issue of the menu items visibility. make sure you have latest package.

Note : This thread is different, if you have any issue related to theme, please open them as separate issue under the project - Bluez.

Ujval Shah’s picture

Issue summary: View changes

Screen Shot added

begodude’s picture

Hi Ujval,

Great theme. I am using this at my website, but I have a problem. I added two advices you gave about link and drop down menu to my style css, it was great. However, everytime I log on as admin, I still see the main menu in my admin page. Can you help please? Thanks.Only local images are allowed.

begodude’s picture

Solved, my administrative page was on top of my content. i have disabled it via my settings. great theme Ujval.

timas20’s picture

StatusFileSize
new431.39 KB
new731.1 KB

Hi,
i tested Bluez , but i have a problem, the menu appeared like that:
test
and i want to appear it like that:
dd