
Originally Posted by
gjh42
On another subject, I see you have something that names and positions attributes individually. It's not Flexible Attributes; what is it and where did it come from? Just curious.
I beleive this is it.
/includes/templates/sas/templates/tpl_modules_attributes.php
near line 67
Code:
<div class="wrapperAttribsOptions optionsID-<?php echo $options_id[$i]; ?>" id="attributeBox-<?php echo $i ?>">
<h4 class="optionName"><?php echo $options_name[$i]; ?></h4>
Can't remember what it was before we added the extra code. You can compare it to yours.
And then we address them like this in CSS
Code:
.wrapperAttribsOptions{
border:1px transparent solid;
/*width:30em;
height:5em;*/
float:left;
}
/*
#attributeBox-0,#attributeBox-1,#attributeBox-2,#attributeBox-3,#attributeBox-4,#attributeBox-5,#attributeBox-6, #attributeBox-7,{
width:5em;
}
*/
#attributeBox-1 label, #attributeBox-2 label, #attributeBox-3 input, #attributeBox-3 label {
float: left;
}
#attributeBox-1 {
visibility:hidden;
}
#attributeBox-2, #attributeBox-3 {
width: 130px;
}
#attributeBox-2 {
clear: both;
}
#attributeBox-3 {
margin-left: 150px;
}
.optionsID-16, .optionsID-17{
width: 49%;
}
.optionsID-10 {
width:250px;
font-weight:bold;
}
.optionsID-11 {
color: red;
margin-bottom: 20px}
.optionsID-14 {
font-weight:bold;
}
.optionsID-20 {
margin-top:37px;
width:200px;
}
.optionsID-20 h4.opotionName {
float:right;
}
.optionsID-20 div {
float:left;
}
The credit goes to NICCOL, a member here. I was reading a thread where he was walking someone through some changes.
Here's the thread: http://www.zen-cart.com/forum/showth...ghlight=niccol
I took his advice for my earlier problem and it opened up a whole new world of manipulation!