OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Change color of listing bar (and hide items) (0 viewing) 

Joomla Real Estate

Go to bottom Favoured: 0

Change color of listing bar (and hide items)

civicos (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
Change color of listing bar (and hide items) 1 Week, 6 Days ago
Karma: 0  
"Hi folks,

I'm interested in changing this black bar to our corporate colour. I've searched through the CSS but couldn't find the element to change it. Any ideas on how to do this? I'm also interested in removing 'views' from that bar.

Thanks a lot
Logged Logged
Last Edit: 2024/04/16 12:39 By civicos.
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8243
graph
User Offline Click here to see the profile of this user
Re:Change color of listing bar (and hide items) 1 Week, 6 Days ago
Karma: 101  
Hello


I'm interested in changing this black bar to our corporate colour

You may replace In file
{file}/components/com_realestatemanager/includes/realestatemanager.css
line 4102:
Code:

background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.75));

Or you need add row like below to your template.css file, code like:
Code:

#list .list_house .rem_type_catlist {
    background: -moz-linear-gradient(to top, #f10000, rgba(0, 0, 0, 0.75))  !important;
    background: -webkit-linear-gradient(to top, #f10000, rgba(0, 0, 0, 0.75))  !important;
    background: -o-linear-gradient(to top, #f10000, rgba(0, 0, 0, 0.75))  !important;
    background: -ms-linear-gradient(to top, #f10000, rgba(0, 0, 0, 0.75)) !important;
    background: linear-gradient(to top, #c91111, rgba(0, 0, 0, 0.75)) !important;
}


this permit to you not lost your changes after Joomla Real Estate Free version update.

For hide "View field" in Joomla Real Estate you may to your CSS file add:
Code:

.rem_type_catlist .col_hits {
  display: none ;
}





Below post show, what you need do in moments like this:
ordasoft.com/Forum/Joomla-Real-Estate/24...her-color.html#24262

Regards
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
Go to top
»