Advertisement:

Author Topic: show/hide subcategory instead of showing full subcategory  (Read 685 times)

nijamutheen

  • Newbie
  • *
  • Posts: 21
show/hide subcategory instead of showing full subcategory
« on: August 07, 2017, 12:47:26 am »
have you anybody  javascript/css code for show/hide options instead of showing full subcategory displayed http://prntscr.com/fxpxe9


marius-ciclistu

  • issues
  • Hero Member
  • *
  • Posts: 1652
  • "BE GRATEFUL TO THOSE THAT SUPPORTED YOU"
Re: show/hide subcategory instead of showing full subcategory
« Reply #1 on: August 07, 2017, 11:54:20 am »
Use this

Code: [Select]
@media only screen and (min-width: 741px){
ul.r-list li ul {
    display: none;
}

.cell_3 > .r-list > li:hover > ul {
        display: table;
        position: absolute;
        background:yellow;
    margin-top:-10px;
    margin-left:10px;
padding:0 10px 10px 10px;

}

}
« Last Edit: August 07, 2017, 12:15:30 pm by marius-ciclistu »

nijamutheen

  • Newbie
  • *
  • Posts: 21
Re: show/hide subcategory instead of showing full subcategory
« Reply #2 on: September 23, 2017, 09:40:52 pm »
where do i want to paste that ?

marius-ciclistu

  • issues
  • Hero Member
  • *
  • Posts: 1652
  • "BE GRATEFUL TO THOSE THAT SUPPORTED YOU"
Re: show/hide subcategory instead of showing full subcategory
« Reply #3 on: September 23, 2017, 09:56:48 pm »
At the end of your css file(main.css in bender)