MOJO theme - Gallery View background

try here

<?xml version="1.0"?>

<image image=“@@preview_rect_image” default_image=“@@default_preview_rect_image” x=“0” y=“0” w=“1280” h=“720” textcolor=“@@preview_rect_color” keycolor=“1” ignore_keycolor=“1” bg=“1”/>

<image image=“@@browse_text” x=“0” y=“0” w="1280"h=“720” scale=“100” bg=“1”/>

                   

 

 

 

 

NOTE: whatever this image is …

It will get overlayed on top of the Linksheet. If you do not want this to happen, move the linksheet code to the next line…

eg.

h=“720” textcolor=“@@preview_rect_color” keycolor=“1” ignore_keycolor=“1” bg=“1”/>

<image image=“@@browse_text” x=“0” y=“0” w="1280"h=“720” scale=“100” bg=“1”/>

P.S.  any xml with this at the beginning and end of an xml tag … <!--      –>  means it’s a “comment” or remed out
so for example…

<!–image image=“image/Gallery/frame.png” x=“264” y=“346” w=“991” h=“168” bg=“1”/–>

does nothing … it won’t display

 

so the above code can be trimmed down and do the same thing…

<?xml version="1.0"?>

<image image=“@@browse_text” x=“0” y=“0” w="1280"h=“720” scale=“100” bg=“1”/>

1 Like