-- HikaShop version -- : 2.2.0
-- Joomla version -- : 3.1.5
-- PHP version -- : 5.1
Hi, I'm trying to solve a little issue with the popup when I click over the edit address button in the customer profile.
According to my template, the popoup opens at the bottom of the page so I need to scroll down to see the popup window.
I've tryed to customize the css file but I saw that every user has got a different div for the popup:
id="modal-hikashop_edit_address_popup_1"
id="modal-hikashop_edit_address_popup_2"
id="modal-hikashop_edit_address_popup_3"
etc...
so, I would have solved my issue with a css code like:
#modal-hikashop_edit_address_popup_(number) {
position: absolute;
top: 20px !important;
}
but I cannot do it because this DIV's ID change for every user. Any solution or CSS trick to solve it?