Announcement

Collapse
No announcement yet.

problem with user interface (and a second unrelated problem)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    problem with user interface (and a second unrelated problem)

    I can only seem to do one "update" per refresh of any page's code. So I make one change, hit update, works fine, make another change, and nothing happens when i hit update again. I have to refresh the whole interface and go back to the page any time I want to make a single change. Also, certain things will open my website inside of the interface instead of doing what they're supposed to. For instance, if I try to recall a previous state of the site, it loads my website instead, with the header and side panel of the UI intact. It happens when I try to open iatu's store helper as well as a couple other random things. And in the case of the history recall, it doesn't actually do the recall. Anyone else have problems like this?

    My other problem is specific to coding, which I am not very good at. Here is the website in question: www.wunderwurks.com. You'll notice on the right side of the page there is a best-selling items stack of five products, one of which has its name and price incorrectly aligned to the side of the image instead of the top. This is not five separate images, it's just a block of recursive code that generates these things based on sales, so I don't have direct control over that one image as opposed to the others. I've tried adding some text alignment, but it doesn't change anything. Here is the code:

    <span style="position:relative; top:32px;">
    <mvt:item name="toolkit" param="bestseller|pcount|ALL|5" />
    <mvt:if expr="pcount GT 0">
    <B style="font-size:12;" align="right"><FONT COLOR=black> Our most Popular Items!!</FONT></B><BR>
    <mvt:foreach iterator="bestsell" array="bestseller">
    <br>
    <a href="/product/&mvta:bestsell:code;.html">
    <B style="font-size:12; align:right">&mvte:bestsell:name; &nbsp;&nbsp;$&mvte:bestsell:price;
    <img style="border-width:1px; border-color:333333; border-style:solid;" src="&mvte:bestsell:image;" width="70%"><a><BR>
    </mvt:foreach>
    </mvt:if>
    <BR><BR>
    </span>
    </span>
    </div>


    I'm wondering if there's another page somewhere that I can directly manipulate the table as if it were five separate things?

    Thanks for the help.

    #2
    Re: problem with user interface (and a second unrelated problem)

    I've had success with trying different browsers before? What are you using
    Mark Hood
    Vermont Gear

    Comment


      #3
      Re: problem with user interface (and a second unrelated problem)

      chrome and safari. same problems. both of them.

      Comment


        #4
        Re: problem with user interface (and a second unrelated problem)

        I can only seem to do one "update" per refresh of any page's code
        It may be an iframe thing. Make sure the focus is in the frame that you wish to update.

        My other problem is specific to coding


        Make sure you close the anchor tags.

        Code:
        <a href="/product/&mvta:bestsell:code;.html">
        <b style="font-size:12; align:right">&mvte:bestsell:name; &nbsp;&nbsp;$&mvte:bestsell:price;
        <img style="border: 1px solid gray;" src="&mvte:bestsell:image;" width="70%"></a><br>
        
        happy coding!
        http://www.alphabetsigns.com/

        Comment

        Working...
        X