I'm looking to modify the layout of a specific webpage at based on the following instructions:
First, insert this link within the
<head>
<link rel="stylesheet"
href="https://trafficbalance.io/static/css/sdk/sdk.css">
-next, add these js links along with the script:
<script src="https://trafficbalance.io/static/js/sdk/all.min.js">
</script>
<script>
$(function() {
tbsdk.init({
container: '#cont',
pipe: '0rSX2a2',
campaign: '13',
sub_campaign: '30DayChange',
password_required: true,
extra_data: {
subAffiliateId: "30DayChange"
}
});
});
</script>
Lastly, update the div of the form to
<div id=“cont”></div>
After making these changes, I noticed no difference in the appearance of the webpage's form. It seems like I might need to utilize a Javascript function for the form - how would I go about implementing it?