Hi all,
Just adding some dynamic html into my app and I need to add some,
generated css scripts into my code.
Like this..
What I would like to do is place the code below [put data here],
when the user accesses the page.
Tom
Just adding some dynamic html into my app and I need to add some,
generated css scripts into my code.
Like this..
B4X:
<style>
#main {
[put this data here]
background-image: url(images/fresh_snow.png);
background-position: left top;
background-repeat: repeat;
padding: 15px;
}
</style>
</head>
<body id=main >
<div>
<div id="maindiv">
</div>
</div>
What I would like to do is place the code below [put data here],
when the user accesses the page.
Tom