WebSite X5Help Center

 
Ukraine.report .
Ukraine.report .
User

Wie kann ich für eine Seite...  de

Author: Ukraine.report .
Visited 445, Followers 1, Shared 0  

Wie kann ich für eine Seite... alles gleich lassen - aber nur rand und seitenhintergrund in schwarz haben.

Ich denke ich muß html Code für diese Seite einfügen.

Aber wie wäre der lg :)Andre 

Posted on the
11 ANSWERS - 2 USEFUL
Daniel W.
Daniel W.
User
Best User of the month DEBest User of the month EN

Dazu bei WebSite X5 unter ...

3 Sitemap

... die Seite markieren, oben auf "Eigenschaften" klicken und "Erweitert", hier das eintragen:

<style>
body { background: black; !important }

</style>

Testseite >> http://finde-links.de/123shop-hosteurope/datenschutzerklaerung.html

Für speziellere Wünsche müsste die CSS-Experten antworten.

Read more
Posted on the from Daniel W.
Ukraine.report .
Ukraine.report .
User
Author

super danke :) funktioniert ... :)  aber das important kann ich löschen oder ?

wie mache ich es, dass dieses Skript

<script>
var eventdate = new Date("February 24, 2022 00:00:00 GMT");
d=new Date();
count=Math.floor((eventdate.getTime()-d.getTime())/1000);
count=Math.floor(count/(60*60*24)*-1+1);
document.write("<b><font color='red'>" + count + "</b></font>" + " Tage Krieg in der Ukraine");
</script>

auf schwarzen Hintergrund ist -

Tage in GELB   und fett

Tage Krieg in der Ukraine - mit weißer Schrift 

und Hintergrund schwarz ist

:) danke lg Andre

Read more
Posted on the from Ukraine.report .
Franz-Josef H.
Franz-Josef H.
Moderator

<script>

var eventdate = new Date("February 24, 2022 00:00:00 GMT");

d=new Date();

count=Math.floor((eventdate.getTime()-d.getTime())/1000);

count=Math.floor(count/(60*60*24)*-1+1);

document.write("<b><font color='yellow'>" + count + "</b></font>" + "<font color='white'>" + " Tage Krieg in der Ukraine" + "</font>");

</script>

Für den schwarzen Hintergrund änderst Du im Stil des Objekts die Hintergrundfarbe auf schwarz.

Read more
Posted on the from Franz-Josef H.
Franz-Josef H.
Franz-Josef H.
Moderator

Das !important ist wie die Übersetzung schon sagt wichtig, denn es setzt alle anderen Regeln auf dem gleichen Element außer Kraft. Für einen korrekten Syntax sollte der Befehl aber wie folgt geschrieben sein:

<style>

body { background: black!important; }

</style>

Read more
Posted on the from Franz-Josef H.
Ukraine.report .
Ukraine.report .
User
Author

das mit dem Zeilenstil auf die Farbe schwarz zu stellen - bewirkte - dass sie rot war die Zeile oben.

Jetzt habe ich dem Skript folgendes Hinzugefügt und es ist noch immer Weiß. :(

<style>body { background: black; !important }</style>

<script>var eventdate = new Date("February 24, 2022 00:00:00 GMT");d=new Date();count=Math.floor((eventdate.getTime()-d.getTime())/1000);count=Math.floor(count/(60*60*24)*-1+1);document.write("<b><font color='yellow'>" + count + "</b></font>" + "<font color='white'>" + " Tage Krieg in der Ukraine" + "</font>");</script>

https://ukrainedaily.net/

Read more
Posted on the from Ukraine.report .
Ukraine.report .
Ukraine.report .
User
Author

noch so verändert wie du gesagt hast - aber noch immer weiß

<style>body { background: black!important; }</style>

<script>var eventdate = new Date("February 24, 2022 00:00:00 GMT");d=new Date();count=Math.floor((eventdate.getTime()-d.getTime())/1000);count=Math.floor(count/(60*60*24)*-1+1);document.write("<b><font color='yellow'>" + count + "</b></font>" + "<font color='white'>" + " Tage Krieg in der Ukraine" + "</font>");</script>

Read more
Posted on the from Ukraine.report .
Daniel W.
Daniel W.
User
Best User of the month DEBest User of the month EN

Es ist doch wie gewünscht.

-----

Tage in GELB und fett

Tage Krieg in der Ukraine - mit weißer Schrift

und Hintergrund schwarz ist

-----

Read more
Posted on the from Daniel W.
Daniel W.
Daniel W.
User
Best User of the month DEBest User of the month EN

-----

Read more
Posted on the from Daniel W.
Ukraine.report .
Ukraine.report .
User
Author

browserverlauf gelösch und auch in opera und chrome probiert - beiden das gleiche Ergebnis

Read more
Posted on the from Ukraine.report .
Franz-Josef H.
Franz-Josef H.
Moderator
Ukraine.report .
das mit dem Zeilenstil auf die Farbe schwarz zu stellen - bewirkte - dass sie rot war die Zeile oben.

Von Zeilenstil war nicht die Rede sondern vom Stil des Objekts. In Schritt 4 Seitenbearbeitung die Seite aufrufen, das Objekt markieren und oben Stil des Objekts auswählen. Dort dann im Bereich Stil die Hintergrundfarbe auswählen. 

Read more
Posted on the from Franz-Josef H.
Ukraine.report .
Ukraine.report .
User
Author

ja genau das war es :) danke vielmals für die Hilfe :))) lg Andre 

Read more
Posted on the from Ukraine.report .