I have a problem with a specific tag captured from an external source. This code that you will see is taken from another site, and you can also see the date (for example, 15 Juli MΓ₯ndag). There are dates on the whole page, how can I focus them only on CSS? Tried with absolute positioning, which leads to the fact that all dates are the same.
The spell is here.
My html:
<div id="header"> <div class="schema"> <h1>Schema</h1> </div> <div class="back"><a id="back" href="index.html"></a> </div> </div> <div id="content"> <div class="content" style="margin-top:0px;"> <div class="article" style="text-align:center;"> </div> </div> </div>
My JS:
$(window).load(function () { //Fade $("#status").fadeOut(); $("#preloader").delay(350).fadeOut("slow"); }) grabShedule(); function grabShedule() { var url = "http://1life.se/scraper/Schedule.php"; //URL $.getJSON(url, function (response) { var html = response.scraped[0].html; //Answer $('.article').append(html); //Answer is appended to .article }); }
Look at my fiddle, I donβt know how to approach this problem ...
How i want: 
source share