Hello
Is it possible to replace the slider title with an image and still be clickable? This is the code it has generated. The title of the slider is 'taartvorm'
I would also like to center an image and a radio button that I have put in one div. Can I do that in the HTML?
Many thanks!
Is it possible to replace the slider title with an image and still be clickable? This is the code it has generated. The title of the slider is 'taartvorm'
<?php if(isset($pane)){echo $pane->startPanel("taartvorm", "cf_container_2");} ?>
<input type="hidden" name="taartvorm" value="" alt="ghost" />
<div class="ccms_form_element cfdiv_radio" id="taartvorm1_container_div" style="">
I would also like to center an image and a radio button that I have put in one div. Can I do that in the HTML?
<div style="float:left; clear:none;">
<p><img style="margin-right:25px" src="images/icons/taartvorm-rond.png" alt="taartvorm rond" align="middle" /></p>
<input type="radio" name="taartvorm" id="taartvorm_0" title="taartvorm" value="Rond" class="" />
</div>
Many thanks!
Hi Rutger1973,
I don't know about the slider title. It's probably not possible in the basic ChronoForms code but you can probably do it with CSS or CSS + JavaScript.
The easiest way to center the image and radio button is probably to put the HTML you need into a Custom Element element in the form Preview box.
Bob
I don't know about the slider title. It's probably not possible in the basic ChronoForms code but you can probably do it with CSS or CSS + JavaScript.
The easiest way to center the image and radio button is probably to put the HTML you need into a Custom Element element in the form Preview box.
Bob
Hi Bob
Thanks for your answer, I will try it on a CSS/JS forum then...
Thanks for your answer, I will try it on a CSS/JS forum then...
Hi Bob
Just to let you (any maybe others as well) that I have found a simple solution... it's actually almost too easy🙂
Just to let you (any maybe others as well) that I have found a simple solution... it's actually almost too easy🙂
<?php
if ( isset($pane) ) {
echo $pane->startPanel("<img src='../images/yourimage.png'/>", "cf_container_2");
}
?>
That replaces the titletext with an image.
This topic is locked and no more replies can be posted.