closed issue
Hi Sconcepts!
Have you tried using an iframe to include the content?
<iframe src="http://www.savelolly.com/holiday-search.html" style="width:405px;height:150px;border:0"></iframe>
Cheers!
Josue
An iframe does not work due to the dropdowns/searches etc . What css do I have to remove and what files do i edit to remove table and form styling etc
Thanks
David
Hey David!
Open css/base.css, remove from line 186 to 254.
Cheers!
Josue
that has almost fixed it – anything else you would suggest removing or adding?
Hey!
Try adding this code to the Quick CSS:
div.dt_leaving.dt_field {
width: 200px;
}
.dt_state_switch_item {
height: 21px;
}
div.dt_state_switch {
width: 109px !important;
}
.dt_box_type2 {
height: 150px;
}
Cheers!
Josue
Nearly their – anything else :)
It seems some of the rules are not getting applied, try adding !important:
div.dt_leaving.dt_field {
width: 200px !important;
}
.dt_state_switch_item {
height: 21px !important;
}
div.dt_state_switch {
width: 109px !important;
}
.dt_box_type2 {
height: 150px !important;
}
Regards,
Josue
great – is their anything I can to about the spacing?
I guess you are referring to the number of night element, try:
.dt_num_nights {
position: relative;
left: -15px;
}
Cheers!
Josue
Great stuff – is their anyway to move the search button closer then that will be complete
This will do it:
input#dt_search {
position: relative;
left: -20px;
}
Cheers!
Josue
I have created a enfold child theme and move the modified base.css file to the child theme directory – but having updated the enfold theme I would like it to use the base.css file in the child theme directory – how would I do this?