Advertisement:

Author Topic: Bender Grid view help  (Read 4864 times)

Quentin Harouff

  • Newbie
  • *
  • Posts: 25
  • Website designer and entrepenuer
Bender Grid view help
« on: September 16, 2013, 04:27:46 am »
I am having a problem with the text in grid view when displayed in firefox. Image below.

slavi

  • Jr. Member
  • **
  • Posts: 50
Re: Bender Grid view help
« Reply #1 on: September 16, 2013, 01:14:49 pm »
Find this code in the main.css
Code: [Select]
.listing-card .listing-basicinfo, .listing-card .listing-attributes {
    display: block;
    vertical-align: top;
    width: auto;
}

and add
Code: [Select]
clear: both

Sphinx

  • Newbie
  • *
  • Posts: 35
Re: Bender Grid view help
« Reply #2 on: September 16, 2013, 07:29:32 pm »
Thank's Slavi, work's for me!

Quentin Harouff

  • Newbie
  • *
  • Posts: 25
  • Website designer and entrepenuer
Re: Bender Grid view help
« Reply #3 on: September 17, 2013, 04:10:36 am »
Amazing! Worked great!

ze31

  • Newbie
  • *
  • Posts: 5
Re: Bender Grid view help
« Reply #4 on: September 19, 2013, 11:58:31 am »
listing-card .listing-basicinfo,.listing-card .listing-attributes{display:block;vertical-align:top;width:auto}

become
listing-card .listing-basicinfo,.listing-card .listing-attributes{display:block;vertical-align:top;width:auto;clear: both}


And it will work

thanks

thedaigle

  • Jr. Member
  • **
  • Posts: 81
Re: Bender Grid view help
« Reply #5 on: September 21, 2013, 12:48:34 am »
SORT OF 'related' to this question so i'll file it here instead of creating a new post...

The text in the span over my icons for tile or list view suddenly changed to red when I've changed my css for anchor tags...did i mistakenly change something else? The standard bender doesn't have "blue" text over the icons...unless i cant see it. :-\

thedaigle

  • Jr. Member
  • **
  • Posts: 81
Re: Bender Grid view help
« Reply #6 on: September 23, 2013, 05:59:44 pm »
Suggestions?

osCanyon

  • Hero Member
  • *****
  • Posts: 701
  • osCanyon, the class of Osclass
Re: Bender Grid view help
« Reply #7 on: October 05, 2013, 08:43:38 pm »
try this instead]
.listing-grid .listing-basicinfo a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    display: inline-block;   //opposed to block and adding  clear:both
}

festow32

  • Newbie
  • *
  • Posts: 16
Re: Bender Grid view help
« Reply #8 on: December 16, 2013, 07:04:17 am »
Thanks a million times, the first trick worked for my site: http://www.dealkenya.com/ which has Gallery view set to default for the home page.

haryour

  • Newbie
  • *
  • Posts: 36
  • My fingers and keyboard are magno-reacting
Re: Bender Grid view help
« Reply #9 on: February 25, 2014, 05:14:25 am »
@Slavi

Thanks ;)
You just saved me a lot of head-cracking

bujuk

  • Newbie
  • *
  • Posts: 8
Re: Bender Grid view help
« Reply #10 on: August 21, 2014, 03:09:09 am »
Thanks a million times, the first trick worked for my site: http://www.dealkenya.com/ which has Gallery view set to default for the home page.

slightly different topic.  is there a way to set the list to gallery for the home page?.  i've been looking for that function.

ajay.b7d

  • Newbie
  • *
  • Posts: 2
Re: Bender Grid view help
« Reply #11 on: May 30, 2015, 12:06:59 pm »
Best Option to Get Grid View As Default that works 100%. is :-

Go to loop.php in Bender.

Find this Code :-
<ul class="listing-card-list <?php echo $loopClass; ?>" id="listing-card-list">

Comment this UL and replace this line with :-

<ul class="listing-card-list listing-grid" id="listing-card-list">

And you will be able to see the Home page with Grid View  ;)

ayman83

  • Jr. Member
  • **
  • Posts: 82
Re: Bender Grid view help
« Reply #12 on: October 23, 2017, 12:33:40 am »
Hello,

In my theme, the Grid view is the default.
How can I make list view is the default?

Thanks