Small issue with footer menu

Ecommerce design Joomla template to start your online business with VirtueMart and additional eshop features.
GK User
Thu Sep 27, 2012 12:29 pm
Suddenly the footer menu showed in different display,,how do I get this menu to its default display?
Thanks in advance
User avatar
Senior Boarder

GK User
Thu Sep 27, 2012 1:11 pm
Hi

Please check if you have it publish on "footer_nav" position.

Cheers
User avatar
Platinum Boarder

GK User
Fri Sep 28, 2012 10:01 am
Hi,
Yes is published on footer_nav position, but same problem still exists, it appeared like this after I added a module position,on the cart module position though...?
Thanks
User avatar
Senior Boarder

GK User
Sun Sep 30, 2012 8:12 pm
Please show me your website.
PM me if you want.
User avatar
Platinum Boarder

GK User
Tue Oct 02, 2012 12:00 pm
Seichinha wrote:Please show me your website.
PM me if you want.

Ive send a PM thanks
User avatar
Senior Boarder

GK User
Tue Oct 02, 2012 1:06 pm
Hi again

You have this menu module published on "bottom1" position and not on "footer_nav" position.
Search what module is populating "bottom1" on modules manager.

See the screenshot.
screen.png
User avatar
Platinum Boarder

GK User
Wed Oct 03, 2012 10:02 am
Ive made a slightly mistake, its not the footer menu module, but the menu on the bottom of the web,
This is how I would like it to be,,
Thanks
User avatar
Senior Boarder

GK User
Sun Oct 07, 2012 1:41 am
Hi again

That's because you have this code on the custom module content:

Code: Select all
<div id="asamodule_search_results">
<ul>
<li><a href="/index.php/accomodation-villas/search?nodates=1&amp;ptype=7">All Villas</a></li>
<li><a href="/index.php/accomodation-villas/search?nodates=1&amp;ptype=9">All Apartments</a></li>
<li><a href="/index.php/about-us">About us</a></li>
<li><a href="/index.php/contact-us">Contact us</a></li>
</ul>
</div>


when it should be:

Code: Select all
<ul>
<li><a href="/index.php/accomodation-villas/search?nodates=1&amp;ptype=7">All Villas</a></li>
<li><a href="/index.php/accomodation-villas/search?nodates=1&amp;ptype=9">All Apartments</a></li>
<li><a href="/index.php/about-us">About us</a></li>
<li><a href="/index.php/contact-us">Contact us</a></li>
</ul>


Cheers
User avatar
Platinum Boarder

GK User
Mon Oct 08, 2012 11:21 am
Thanks for response, But im having the same issue,??
User avatar
Senior Boarder

GK User
Mon Oct 08, 2012 7:19 pm
maniiac1 wrote:Thanks for response, But im having the same issue,??


??? don't understand :huh:
I already provide you the solution.
User avatar
Platinum Boarder

GK User
Tue Oct 09, 2012 10:22 am
Here is your solution and the results are the same...
User avatar
Senior Boarder

GK User
Tue Oct 09, 2012 10:25 am
Impossible
Please provide me administrator access
User avatar
Platinum Boarder

GK User
Wed Oct 10, 2012 11:24 am
Hi again

I see the problem now.
The problem comes from "jomres_ajax_search_contentwrapper" plugin that creates inside module style div#asamodule_search_results on all modules. This is messing up all modules styles... not good.
If you disable it on plugin manager you will see what i mean.

Try contacting the Developer of this Component or send me the plugin files. Maybe i can fix it.

Cheers
User avatar
Platinum Boarder

GK User
Thu Oct 11, 2012 9:40 am
Thanks for your help,
Here are the files
User avatar
Senior Boarder

GK User
Sun Oct 14, 2012 11:32 pm
That's not quite all files.
Don't you have it packed like it's provided?
User avatar
Platinum Boarder

GK User
Mon Oct 15, 2012 11:39 am
No, its installed via backend trhough jomres software,, I can provide a FTP and you can check maybe?Thanks
User avatar
Senior Boarder

GK User
Wed Oct 17, 2012 12:47 pm
Hi again

I decided to make a different approach to solve your problem.
I add the following css on override.css file:

Code: Select all
/* Fixing asamodule search result on _menu */

.box_menu #asamodule_search_results ul {
   margin: 0;
   padding: 0;
       
}
.box_menu #asamodule_search_results ul li {
   min-height: 32px;
   border-top: 1px solid #e7e7e7;
}
.box_menu #asamodule_search_results ul li:first-child {
   border-top: none;
}
.box_menu #asamodule_search_results ul li a {
   padding: 0 0 0 32px;
   line-height: 32px;
   display: block;
   min-height: 32px;
   background: transparent url('../images/menu_item.png') no-repeat 12px 11px;
   color: #000;
   font-weight: bold;
   font-size: 11px;
}
.box_menu #asamodule_search_results ul li a:hover {
   text-decoration: none;
}
.box_menu#asamodule_search_results ul>li.parent>a {
   background: transparent url('../images/style1/menu_plus.png') no-repeat 12px 11px;
}
.box_menu#asamodule_search_results  ul>li:hover>a {
   color: #46660b;
}
.box_menu #asamodule_search_results ul>li.active {
   background: #6e9f15;
   border: 1px solid #639012;
   border-bottom: none;
   margin: 0 -1px;
}
.box_menu #asamodule_search_results ul>li.active>a {
   color: #fff !important;
   background: transparent url('../images/menu_item_active.png') no-repeat 12px 11px;
}
.box_menu #asamodule_search_results ul>li.active.parent>a {
   background: transparent url('../images/menu_minus.png') no-repeat 12px 11px;
}
.box_menu #asamodule_search_results ul > li > ul li {
   background: #fdfcf1;
   border: 1px solid #dddabd;
   border-bottom: none;
   margin: 0 -1px;
}
.box_menu #asamodule_search_results ul>li>ul li:first-child {
   border-top: none;
}
.box_menu #asamodule_search_results ul > li > ul li a {
   color: #5d5d5d;
   font-weight: normal;
}
.box_menu #asamodule_search_results ul>li>ul li a:hover {
   color: #000;
}
.box_menu #asamodule_search_results ul>li.active + li {
   border-top: 1px solid #d7d7d7;
}


As you can see, by adding "_menu" suffix to the module "About Us" works fine now.
I didn't added on "Holiday Extras" module because it's lock and my account don't have permissions to make Global Check in.
You just need to add "_menu" suffix on that one ;)

Cheers
User avatar
Platinum Boarder

GK User
Thu Oct 18, 2012 10:54 am
Hi thanks, but im little confused, where did you added this code? I cant find it
Thanks for your help
User avatar
Senior Boarder

GK User
Thu Oct 18, 2012 11:25 am
It's on ../css/override.css file.
This file is used to override template css classes ;)
User avatar
Platinum Boarder

GK User
Thu Oct 18, 2012 11:55 am
Found it, but I dont know which css codes to add?? Im noob coder.
Thanks
User avatar
Senior Boarder

GK User
Thu Oct 18, 2012 6:54 pm
You don't have to add anything on that file, because i already added ;)

What you need to do is to go to modules manager and find "Holiday Extras" module.
Add "_menu" suffix to this module.

screen.png


I can't do it because this module is closed and my credentials don't allow me to clear it by making global check in.

Cheers ;)
User avatar
Platinum Boarder

GK User
Fri Oct 19, 2012 10:34 am
Thank you sir. ;)
User avatar
Senior Boarder


cron