Issue
I want to make a more mobile friendly version of this website: auspuff-schuelerzeitung.de
So I wrote this little CSS:
#slider-banner{
display: none;
}
#secondary-right{
display: none;
}
h1.site-info {
display: none;
}
But how can I implement it into this website?
I have no access to the server
And I'm pretty new to all this stuff
Solution
As per your clarification.. this is how you can do it..
<html>
<?php
$homepage = file_get_contents('https://auspuff-schuelerzeitung.de/');
echo $homepage; //you can strip the closing <html> if it bothers..
?>
<link rel='stylesheet' href='my_changes.css' type='text/css'/>
</html>
Answered By - mahaidery
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.