Yip, with
IF $PAGEID != 4 THEN BEGIN
$PAGETEXT := "<html><style>body{background-image: url('example.jpg'); background-attachment: fixed; background-position: center; background-size: cover;}</style></html>" + $PAGETEXT
END
page 4 will retain its own background, but say I want also for page 7 to retain its own background, how do I do this for page 7? This what I do for page 4 and 7 but it is not working, in global page script:
IF $PAGEID != 4 THEN BEGIN
$PAGETEXT := "<html><style>body{background-image: url('example.jpg'); background-attachment: fixed; background-position: center; background-size: cover;}</style></html>" + $PAGETEXT
END
IF $PAGEID != 7 THEN BEGIN
$PAGETEXT := "<html><style>body{background-image: url('example.jpg'); background-attachment: fixed; background-position: center; background-size: cover;}</style></html>" + $PAGETEXT
END
What should I type in global page?
I hope it makes sense ...