Skip to content
Snippets Groups Projects
Commit 3c85d773 authored by ands's avatar ands
Browse files

css erweitert

parent 9f733d90
No related branches found
No related tags found
No related merge requests found
.widget { .widget {
border: solid 1px #000000; border: 1px solid #F2EFE5;
font-family:Verdana;
color:#ffffff;
background-color:#261C13;
}
a {
color:#0071BB;
}
a:hover {
color:#777878;
} }
...@@ -22,15 +22,15 @@ ...@@ -22,15 +22,15 @@
include "widgets/$widgetname/$widgetname.php"; include "widgets/$widgetname/$widgetname.php";
$widget = new $widgetname($widgetwidth,$widgetheight); $widget = new $widgetname($widgetwidth,$widgetheight);
$widgetoutput = $widget->giveOutput(); $widgetoutput = $widget->giveOutput();
print("<div print(
"<div
class='widget' class='widget'
id='$widgetname' id='$widgetname'
style=' style='
position:absolute; position:absolute;
left:$widgetpositionx px; top:$widgetpositiony px; left:".$widgetpositionx."px; top:".$widgetpositiony."px;
width:$widgetwidth px; height:$widgetheight px;' width:".$widgetwidth."px; height:".$widgetheight."px;'
width='$widgetwidth' >");
height='$widgetheight'>");
print($widgetoutput); print($widgetoutput);
print("</div>"); print("</div>");
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment