OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
How can I hide the "Search" button (0 viewing) 

Joomla Real Estate

Go to bottom Favoured: 0

How can I hide the "Search" button

nagata (User)
Fresh Boarder
Posts: 10
graphgraph
User Offline Click here to see the profile of this user
How can I hide the "Search" button 10 Years ago
Karma: 0  
Hello,

Does anybody know how we can hide the button "search houses"?
I like to deactivate the search-function as I am not using "search" at all.

Thank you very much
Best regards

Ichiro Nagata
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8230
graph
User Offline Click here to see the profile of this user
Re:How can I hide the "Search" button 10 Years ago
Karma: 101  
hello,

you need at file
{your site}/templates/ordasofttemplate-royalestatetemplate/css/style.css


find row

Code:

.realestate_search_button {
width: 150px;
}


and replace it to


Code:

.realestate_search_button {
width: 150px;
        display: none;
}

Logged Logged
The administrator has disabled public write access.
nagata (User)
Fresh Boarder
Posts: 10
graphgraph
User Offline Click here to see the profile of this user
Re:How can I hide the "Search" button 10 Years ago
Karma: 0  
Hello,

Thank you.
I followed your instruction and changed all the four places of ".realestate_search_button", but unfortunately nothing was changed.
However, with your hint, it came to my mind to check the CSS file.

On
/components/com_realestatemanager/includes/realestatemanager.css
I added "display: none;"

.realestate_search_button {
float: right;
margin: 0 0 5px;
width: 177px;
display: none;
}

It worked.

Thank you very much and
best regards

Ichiro Nagata
Logged Logged
The administrator has disabled public write access.
Go to top
»