Author Topic: Wrong behavior for mod_search in 'top' position  (Read 2840 times)

0 Members and 1 Guest are viewing this topic.

Offline indio

  • Newbie
  • *
  • Posts: 10
  • Karma: +0/-0
    • View Profile
Wrong behavior for mod_search in 'top' position
« on: September 08, 2009, 07:47:24 AM »
Hello again and a big thanks to the developers.

We have the paid version of the rego theme.

I 'm inserting the mod_search in 'top'. I have no horizontal menu in 'user3'. In this case search does not appear anywhere.

Then, when I login with a user and the a a horizontal menu that is for registered users appears on the 'user3' position, I also get the mod_search exaclty where it should be in 'top'.

This seems to be a bug. Could you please give a hand?
Thank you.
« Last Edit: September 08, 2009, 08:03:10 AM by indio »

Offline BDD

  • Global Moderator
  • Full Member
  • *****
  • Posts: 146
  • Karma: +0/-0
    • View Profile
Re: Wrong behavior for mod_search in 'top' position
« Reply #1 on: September 08, 2009, 01:06:08 PM »
Hello,

Thank you for choosing JEZ Rego and your bug report.

To fix this bug, please open up the file "your-joomla-directory/templates/jez_rego/css/layouts.css" with a text editor and look for following block of stylesheets:

Code: [Select]
#jezNav {
position: relative;
width: auto;
}

then replace with block of stylesheet below:

Code: [Select]
#jezNav {
position: relative;
height: 75px;
width: auto;
}

Please do let us know if we can assist you any further via your dedicated support channel for faster response.


Offline indio

  • Newbie
  • *
  • Posts: 10
  • Karma: +0/-0
    • View Profile
Re: Wrong behavior for mod_search in 'top' position
« Reply #2 on: September 08, 2009, 02:47:17 PM »
Thank you for the quick response. I will try the fix tomorrow and tell you about it.

Another "bug" is that when the login box appears on the top userX positions, meaning when it has a black backgroup, then you can't see what you are typing because the text-color is black.

And yet the last problem I encountered is that the log-out button, in the same userX position does not render like the log-in and register buttons. It renders like a simple flat button.

Thanks!

Offline BDD

  • Global Moderator
  • Full Member
  • *****
  • Posts: 146
  • Karma: +0/-0
    • View Profile
Re: Wrong behavior for mod_search in 'top' position
« Reply #3 on: September 08, 2009, 03:24:51 PM »
Thank you for your bugs report.

I have forwarded all details you provided to our dev team so they can fix and release an update for JEZ Rego.

Offline indio

  • Newbie
  • *
  • Posts: 10
  • Karma: +0/-0
    • View Profile
Re: Wrong behavior for mod_search in 'top' position
« Reply #4 on: September 09, 2009, 08:00:59 AM »
Your first fix made the top search box re-appear, without needing the horizontal menu present. Thanks.

Looking forward to your fixes for the rest of the issues.

Offline BDD

  • Global Moderator
  • Full Member
  • *****
  • Posts: 146
  • Karma: +0/-0
    • View Profile
Re: Wrong behavior for mod_search in 'top' position
« Reply #5 on: September 09, 2009, 09:53:13 AM »
Another "bug" is that when the login box appears on the top userX positions, meaning when it has a black backgroup, then you can't see what you are typing because the text-color is black.

Our dev team has fixed this bug. However, as they are adding some amazing brand-new features so they are not going to release an update right now but, might be, on next week.

Here is the fix for you. Please open up the file "your-joomla-directory/templates/jez_rego/css/template.css" and look for following stylesheet block:

Code: [Select]
#modUser2 .mod_login .inputbox {
background-color: black;
border: 1px solid #555;
padding: 7px;
width: 7.167em;
}

then replace with:

Code: [Select]
#modUser2 .mod_login .inputbox {
background-color: black;
border: 1px solid #555;
color: #999;
padding: 7px;
width: 7.167em;
}
« Last Edit: September 09, 2009, 09:55:49 AM by BDD »

Offline indio

  • Newbie
  • *
  • Posts: 10
  • Karma: +0/-0
    • View Profile
Re: Wrong behavior for mod_search in 'top' position
« Reply #6 on: September 09, 2009, 10:03:20 AM »
Yes that worked for changing the text color. Thanks.

The problem with the logout button being out-of-style is still unresolved though.

Offline BDD

  • Global Moderator
  • Full Member
  • *****
  • Posts: 146
  • Karma: +0/-0
    • View Profile
Re: Wrong behavior for mod_search in 'top' position
« Reply #7 on: September 09, 2009, 10:11:00 AM »
And yet the last problem I encountered is that the log-out button, in the same userX position does not render like the log-in and register buttons. It renders like a simple flat button.

Here is the quick fix. Please open up the file "your-joomla-directory/templates/jez_rego/css/template.css" and look for:

Code: [Select]
#modUser2 .mod_login button, #modUser2 .mod_login a.button {
background: url(../images/button_orange.png) 50% 50% no-repeat;
border: 0;
color: #fff;
font-family: "Trebuchet MS", Helvetica, Jamrul, sans-serif;
font-size: 13px;
font-weight: normal;
height: 24px;
line-height: 22px;
margin: 0;
padding: 0;
text-align: center;
width: 63px;
}
#modUser2 .mod_login button {
padding-bottom: 3px;
}
#modUser2 .mod_login button img, #modUser2 .mod_login a.button img {
display: none;
}

then replace with:

Code: [Select]
#modUser2 .mod_login button, #modUser2 .mod_login a.button, #modUser2 .mod_logout button {
background: url(../images/button_orange.png) 50% 50% no-repeat;
border: 0;
color: #fff;
font-family: "Trebuchet MS", Helvetica, Jamrul, sans-serif;
font-size: 13px;
font-weight: normal;
height: 24px;
line-height: 22px;
margin: 0;
padding: 0;
text-align: center;
width: 63px;
}
#modUser2 .mod_login button, #modUser2 .mod_logout button {
padding-bottom: 3px;
}
#modUser2 .mod_login button img, #modUser2 .mod_login a.button img, #modUser2 .mod_logout button img {
display: none;
}
« Last Edit: September 09, 2009, 10:18:20 AM by BDD »

Offline indio

  • Newbie
  • *
  • Posts: 10
  • Karma: +0/-0
    • View Profile
Re: Wrong behavior for mod_search in 'top' position
« Reply #8 on: September 09, 2009, 12:52:41 PM »
worked. you're great, its cool not to have to run through the css myself  ;D

Offline alsoforum

  • Newbie
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Re: Wrong behavior for mod_search in 'top' position
« Reply #9 on: January 27, 2011, 01:36:34 AM »
Thank you for the quick response. I will try the fix tomorrow and tell you about it.

Another "bug" is that when the login box appears on the top userX positions, meaning when it has a black backgroup, then you can't see what you are typing because the text-color is black.business opportunitystock day tradingAnd yet the last problem I encountered is that the log-out button, in the same userX position does not render like the log-in and register buttons. It renders like a simple flat button.

Thanks!


I just wanted to thank you for posting this message about this and I hope it helps some of the others on the board as much as its helped me. Many thanks for the help!!!

 

This is not an official Joomla! Site. The use of the words Joomla is intended to describe what the products are designed for and should not be considered an endorsement by the related Projects.