Hi,

I am wondering how to activate the very cool search and registration to the template as is done in the demoo (and attached image)? I'm using D6!

Thanks in advance... ps great theme... fusion is cool!

CommentFileSizeAuthor
Capture.JPG31.78 KBOnthegOinOz

Comments

Deepika.chavan’s picture

Hi,

1. To enable the search box for anonymous user please give the 'search content' permission for anon user here- 'admin/user/permissions' page.
2. Enable 'User login' block in 'header top' region.
3. Now to theme it properly, rename your 'local-sample.css' to 'local.css'.
4. Add following css code in local.css file

#header-top-wrapper {
  padding-top: 0px;
}

#block-user-0 {
  margin-bottom: 1em;
}

#block-user-0 .inner-wrapper h2 {
  display: none;
}

#user-login-form .form-item {
  float:left;
  margin-bottom: 0;
  margin-top: 0;
  margin-right: 1em;
}

#user-login-form .form-item label {
  display: none;
}

#user-login-form #edit-submit {
  float:left;
  margin-right: 1em;  
}

5. Please clear cached data here- admin/settings/performance.

HTH!!

RGrds,
Deepika Chavan.

esmerel’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

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

OnthegOinOz’s picture

Thanks for this... sorry for not responding sooner. I followed the guide but could not seem to get the search bar in it as it is in the snapshot? i'll keep playing around and see where I get to...

sheena_d’s picture

I'm not sure why someone suggested that you use custom CSS to implement this styling, this styling can be achieved with a few simple settings.

The search form styling is the default styling for the search form and will be present once you enable the search form, set permissions to allow users to use the search, and enable the search form on your global theme settings.

The login form is simply the normal login form block placed into the "header top" region with the "horizontal login block" skinr style applied.

If you are still unsure about how to use the theme, be sure to read through out documentation thoroughly. http://fusiondrupalthemes.com/support/documentation

Good luck!

OnthegOinOz’s picture

Thanks... I'll give it a go!