I have been working through my wire frames using modules to create a site that looks similar to my planning, but going through the event page i have come across a bug that i can't seem to find.
On my event page above the feature module there appears to be a box on nothing forcing the module itself down, after inspecting the elements on the page the code for the anomaly looks like this;
<div class="module-feature-chart easyPieChart" data-percent="0" data-color="rgba(222,93,93, 1)" data-trackcolor="rgba(0,0,0,0)" data-linecap="butt" data-rotate="0" data-size="100" data-linewidth="3" data-animate="2000" style="width: 100px; height: 100px; line-height: 100px;">
<canvas width="100" height="100"></canvas></div>
After changing all these values to 0, the box disappears, but unfortunately i cannot find a corresponding place on the parallax theme builder that lets me manipulate it. After changing it, the code looks like this;
<div class="module-feature-chart easyPieChart" data-percent="0" data-color="rgba(222,93,93, 1)" data-trackcolor="rgba(0,0,0,0)" data-linecap="butt" data-rotate="0" data-size="100" data-linewidth="3" data-animate="2000" style="width: 0px; height: 0px; line-height: 0px;">
<canvas width="0" height="0"></canvas></div>
Essentially going from this;
To this. Manipulating the code will change it in chrome, but there is no way to put this into the theme builder. Copying the code found from google chrome doesn't work in the builder in wordpress.
No comments:
Post a Comment