Forum Replies Created
- AuthorPosts
- zoeParticipant
I wish to do this also.
zoeParticipantOk, so it is either phone number or email, but not both? You are saying there is only room for one spare extra column and we are already using this for the email? Is that correct?
zoeParticipantOk, customer is also asking if the phone number can also be added as another additional column. I’m sorry I do not know how to code php. Your help is appreciated. Thank you.
zoeParticipantworks great thanks a million!
zoeParticipantPS: I would still like to add custom fields to the vendor page, as this could open up lots of possibilities. Hope this can be done, or is in the pipeline for implementation. Thanks
zoeParticipantThanks very much. I got it working now. The video was chopping off the top -75px and the height was being forced at whatever size it was set to in the store configuration settings page, which in my case was 450px, it would be useful if these boxes could accept a % size as well as a pixel size.
So I have managed to override the embedded CSS code by applying custom CSS in the advanced tab in Elementor on the Store Banner box as follows:-
.banner_video iframe {
position: absolute;
top: 0px !Important;
left: 0;
width: 100%;
height: 100%;
}
.banner_area {
position: relative;
height: 100% !Important;
overflow: hidden;
}I probably don’t need all of this css, but it’s working for now and I’m happy with that!
zoeParticipantI have managed to override the embedded CSS code by applying custom CSS in the advanced tab in Elementor on the Store Banner box as follows:-
.banner_video iframe {
position: absolute;
top: 0px !Important;
left: 0;
width: 100%;
height: 100%;
}
.banner_area {
position: relative;
height: 100% !Important;
overflow: hidden;
}I probably don’t need all of this, but it’s working for now and I’m happy with that! If anyone has any other ideas, please share.
You could probably add this to your child theme css as well, but I haven’t tried that. - AuthorPosts