This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Requirements For Use | |
5.18 Engine or Higher | |
Available on any page, no item assignment required. | |
Definition | |
<mvt:assign name="variable" value="expression, string or number" /> | |
Executes the expression contained within value and saves that value to the variable defined in the name attribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="logo"> | |
<mvt:if expr="l.settings:readytheme:logo_type EQ 'text'"> | |
<a href="http://&mvt:global:domain:name;"> | |
<span class="logo-name">&mvt:readytheme:logo_name;</span> | |
<span class="logo-tagline">&mvt:readytheme:logo_tagline;</span> | |
</a> | |
<mvt:elseif expr="l.settings:readytheme:logo_type EQ 'image'"> | |
<a href="http://&mvt:global:domain:name;"><img src="&mvte:readytheme:logo_image;" alt="&mvt:readytheme:logo_alt;" title="&mvt:readytheme:logo_alt;" border="0" /></a> | |
<mvt:else> | |
</mvt:if> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
&mvt:readytheme:background_color; | |
&mvt:readytheme:background_image; | |
&mvt:readytheme:background_position_horizontal; | |
&mvt:readytheme:background_position_vertical; | |
&mvt:readytheme:background_repeat; | |
&mvt:readytheme:font; | |
&mvt:readytheme:logo_alt; | |
&mvt:readytheme:logo_image; | |
&mvt:readytheme:logo_image_height; | |
&mvt:readytheme:logo_image_width; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style type="text/css"> | |
body | |
{ | |
background-image: url( "graphics/00000001/conquer_arnold.jpg" ); | |
background-repeat: no-repeat; | |
background-position: center center; | |
background-color: #FFFFFF; | |
font-family: Verdana, Geneva, sans-serif; | |
} | |
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mvt:item name="readytheme" param="thirdpartysharing" /> | |
<mvt:item name="readytheme" param="trustsymbol" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This item: | |
<mvt:item name="readytheme" param="image('banner-image')" /> | |
Outputs this Code: | |
<a href="http://domain.com/mm5/merchant.mvc?Store_code=test&Screen=ABUS" target="_self"> | |
<img src="graphics/00000002/slide1.gif" alt="Homepage Banner"></a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Item Tag: | |
<mvt:item name="readytheme" param="banner('promo-banner')" /> | |
Output: | |
<span id="promo-banner" class="readytheme-banner"> | |
Free Shipping for all order over $200 | |
</span> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Item Tag: | |
<mvt:item name="readytheme" param="contentsection('about-us')" /> | |
Outputs: | |
<div id="about-us" class="readytheme-contentsection"> | |
Welcome to my site! | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<mvt:item name="readytheme" param="productlisting('featured-products')" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ---- These are the styles required to make the various navigation elements display and function correctly. ---- */ | |
.navigation-set, | |
.navigation-set *, | |
.navigation-set *:before, | |
.navigation-set *:after { /* Apply a natural box layout model to all "navigation-set" elements */ | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
.navigation-set { |
OlderNewer