Big Problem with different views

phatair
phatair
Offline
0
Hi Germi,

i have a big problem with the views (listview, gridview and so on)

first problem is:
you have in your album.css the line:
list-style-type:none;


so it is not possible to use in the, i think it was the grid view, any list style. That is a big problem for me, because i use for the tracklist a number list.
So i have to delete the line in the css file.

NOW the problem is - i use the grid view - for every album picture there is a point, like on a unorderd list :/ (you can see it here: http://www.sound-ecke.de/alben-artist/f/freundeskreis-fk-allstars-3 )

The second problem is:
If i change the view on a artist page, i also change the view on the search site :( i can not use on a artist page the list view and on the search site the grid view.

For me the second problem is a big problem. i would like to use the grid view on the search page but i can not use it because problem number one.

So do you have any idea how i can solve one of these problems? if i solve one, the other problem is gone :)
Responses (3)
  • Accepted Answer

    Monday, September 21 2009, 01:56 PM - #Permalink
    0
    dont worry! all can be solved with a little CSS styling ;)

    the list for the grid view is under a UL element wich class is "albums"

    so I should be enough with...

    ul.albums li{list-style-type:none;}

    second problem: yes, MC is configured to show the same view on search than on artist...
    you can do a small manual hack to solve this:

    open /components/com_muscol/views/search/view.html.php

    on line 116 you find this:

    $this->_layout = & $this->get( 'Layout');

    change it to

    $this->_layout = 'grid';

    (or 'default' or 'detailed')

    that should be enough :)

    tell me if this works!

    best,
    Germi
    The reply is currently minimized Show
  • Accepted Answer

    phatair
    phatair
    Offline
    Monday, September 21 2009, 02:38 PM - #Permalink
    0
    Hi Germi-you are the grand master of support, css, php :woohoo: :D

    both tweaks works perfect - now the number list for the tracklist works and also the grid view without the "points"

    Now i can change the view on the artist site without changing the view of the search site

    perfect, wonderful, great, excellent :)

    Thank you so much!
    The reply is currently minimized Show
  • Accepted Answer

    Monday, September 21 2009, 02:40 PM - #Permalink
    0
    no problem!

    glad to help :)
    The reply is currently minimized Show
Your Reply