Hi,
I am really new to ZenCart and PHP, php really confuses me as Im used to html so sorry about the noob question.
I am trying to change the css on the choice menu, for flavour. All's i want to do is put padding on it, but not effect any other parts of the website that use SELECT.
The above in bold is the part of the css style I am trying to change.PHP Code:<div class="wrapperAttribsOptions">
<h4 class="optionName back"><?php echo $options_name[$i]; ?></h4>
<div class="back">[B]<?php echo "\n" . $options_menu[$i]; ?>[/B]</div>
This converts to
HTML Code:<div class="wrapperAttribsOptions"> <h4 class="optionName back"><label class="attribsSelect" for="attrib-1">Flavour</label></h4> <div class="back"> <select name="id[1]" id="attrib-1"> <option value="4">Banana</option> <option value="3">Choc Cookie</option> <option value="2">Strawberry</option> </select>
I cant seem to locate the select name="id[1]" id="attrib-1" bit, so I can edit it and put my own CSS style into it, can anyone tell me where it will be?


Reply With Quote

