VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: naoko15 on March 09, 2015, 15:40:50 PM

Title: Changing the position of filters module
Post by: naoko15 on March 09, 2015, 15:40:50 PM
Hello, i'd like to display my custom filters module right beside the product order option. Is there a way to do this? Can anyone help?

I am using J2.5 + VM 2.6

Regards
Title: Re: Changing the position of filters module
Post by: balai on March 09, 2015, 16:09:54 PM
Try this css

.cf_wrapp_all {
    position: relative;
    top: 162px;
    left: 250px;
}

Title: Re: Changing the position of filters module
Post by: naoko15 on March 09, 2015, 16:41:08 PM
Thanks balai, but it doesn't work when i add more content to the category description, or it is displayed in small screens

Title: Re: Changing the position of filters module
Post by: balai on March 09, 2015, 17:15:08 PM
You have to write another css for your small screens. I think that the relative positioning is the only viable solution since you are trying to put a div into another div.
Title: Re: Changing the position of filters module
Post by: naoko15 on March 09, 2015, 17:21:15 PM
Ok, thanks balai