Need help setting up rows and columns for a shop page in DW

I sell my books and design tees on my site. I'm trying to set up a new page for a new site.
For some reason I can't get my products in a row and column fashion.
I have a attachment file so you can see what I actually mean. thanks to all that will give advice.

Use a table for your product catalog.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
www.alt-web.com/
www.twitter.com/altweb
www.alt-web.blogspot.com

Similar Messages

  • I need help setting up an apple id for my sons phone. It seems his email address has been taken and/or we cant get the password.

    I need help setting up an apple id for my son's phone. It seems his email address has been taken and/or we cant get the password.

    Two different things
    If you forgot the password
    If you forgot your Apple ID password - Apple Support
    If the email ID you want to use is in use by someone else - then you may need a new one
    The iCloud ID's are usually unique and may be of help if you set one up

  • Need help with Pivoting rows to columns

    Hi,
    I need help with pivoting rows to columns. I know there are other posts regarding this, but my requirement is more complex and harder. So, please give me a solution for this.
    There are two tables say Table 1 and Table 2.
    Table1
    name address email identifier
    x e g 1
    f s d 2
    h e n 3
    k l b 4
    Table2
    identifier TRno zno bzid
    1 T11 z11 b11
    1 T12 z12 b12
    1 T13 z13 b13
    2 T21 z21 b21
    2 T22 z22 b22
    As you can see the identifier is the column that we use to map the two tables. The output should be like below
    output
    name address email identifier TRno1 zno1 bzid1 TRno2 zno2 bzid2 TRno3 zno3 bzid3
    x e g 1 T11 z11 b11 T12 z12 b12 T13 z13 b13
    f s d 2 T21 z21 b21 t22 z22 b22
    Also we do not know exactly how many TRno's, zno's, etc each value in the identifier will have. There may be only 1 TRNO, zno and bzid, or there may be four.
    All the values must be in separate columns, and not be just comma delimitted. There are also other conditions that i have to add to restrict the data.
    So, can you please tell me what is should use to get the data in the required format? We are using Oracle 10g. Please let me know if u need any more information

    Something like this ?
    SCOTT@orcl> ed
    Wrote file afiedt.buf
      1  select a.name,
      2  a.address,
      3  a.email,
      4  b.* from (
      5  select distinct identifier
      6  ,max(trno1) trno1
      7  ,max(zno1) zno1
      8  ,max(bzid1) bzid1
      9  ,max(trno2) trno2
    10  ,max(zno2) zno2
    11  ,max(bzid2) bzid2
    12  ,max(trno3) trno3
    13  ,max(zno3) zno3
    14  ,max(bzid3) bzid3
    15  ,max(trno4) trno4
    16  ,max(zno4) zno4
    17  ,max(bzid4) bzid4
    18  from (select identifier
    19  ,decode(rn,1,trno,null) trno1
    20  ,decode(rn,1,zno,null) zno1
    21  ,decode(rn,1,bzid,null) bzid1
    22  ,decode(rn,2,trno,null) trno2
    23  ,decode(rn,2,zno,null) zno2
    24  ,decode(rn,2,bzid,null) bzid2
    25  ,decode(rn,3,trno,null) trno3
    26  ,decode(rn,3,zno,null) zno3
    27  ,decode(rn,3,bzid,null) bzid3
    28  ,decode(rn,4,trno,null) trno4
    29  ,decode(rn,4,zno,null) zno4
    30  ,decode(rn,4,bzid,null) bzid4
    31  from (select identifier,
    32  trno,bzid,zno,
    33  dense_rank() over(partition by identifier order by trno,rownum) rn
    34  from table2)
    35  order by identifier)
    36  group by identifier) b,table1 a
    37* where a.identifier=b.identifier
    SCOTT@orcl> /
    NAME       ADDRESS    EMAIL      IDENTIFIER TRNO1      ZNO1       BZID1      TRNO2      ZNO2       BZID2      TRNO3      ZNO3       BZID3      TRNO4      ZNO4       BZID4
    x          e          g          1          T11        z11        b11        T12        z12        b12        T13        z13        b13
    f          s          d          2          T21        z21        b21        T22        z22        b22
    SCOTT@orcl> select * from table1;
    NAME       ADDRESS    EMAIL      IDENTIFIER
    x          e          g          1
    f          s          d          2
    h          e          n          3
    k          l          b          4
    SCOTT@orcl> select * from table2;
    IDENTIFIER TRNO       ZNO        BZID
    1          T11        z11        b11
    1          T12        z12        b12
    1          T13        z13        b13
    2          T21        z21        b21
    2          T22        z22        b22
    SCOTT@orcl>Regards
    Girish Sharma

  • Search row and column for return value

    Dear Sir/Madam,
                               I have a problem for searching spreadsheet and hope you can help me out a bit.  Im pretty new to Labview and Im currently using Labview 8.0.  My task is to search the spreadsheet I have attached in row and column-wise, then return the corresponding value out.  I had an attempt in doing this as you can see from the vi that i have attached.  I try inputting the 'read from measurement file' into an array and using delete, index and search array I will be able to find the index value for the relevant row and column that i searched for by inputting them into an index array with the orginal array from the 'read from measurement file'.
                              So ultimately, when i enter a row value of 0.5 and a column value of 0.3, my output will be 1.688.
                              I can't see any mistakes in my logic but I getting really strange results, like I can read my data has been entered into an array but when i try deleting the first column and put it into another array, the orginal array with nothing deleted is outputted hence making my search to give out -1 value. So could you take a look please and give me any suggestion that can solve my problem or enhance the code a bit.  Thank you for your time.
    Best Regards,
    Coato
    P.s for some reason i can't attached the .lvm file of my data hence i have attached the excel version but i think you need to convert it back to .lvm for the 'read from measurement file' function to work.
    Attachments:
    Backswing compensation.csv ‏10 KB
    Backswing comnpensation2.vi ‏109 KB

    Your VI makes absolutely no sense to me, but maybe I don't understand what you are trying to do.
    You seem to have dynamic data with 6 signals and 48 points/channel. Now you reshape this into an array of dynamic data with 4x13 elements from which you slice out one row or column, resp. "delete from array" is NOT the correct tool to do this, use "Index array" with one index unwired to get a row or column as 1D array.
    So you end up with two 1D arrays of dynamic data that you search for DBL. It is difficult to understand how you want to search for an array element that corresponds to a scalar DBL value of 0.1. Your array elements are NOT DBLs but dynamic data, each containing many signals!
    There are two elements on all your data that are "3", the rest are zero. You will never find anything that is 0.1.
    Maybe you can convert your original dynamic data to a 2D array with "rows are signals" using "convert from dynamic data", then operate on the 2D array.
    Coato wrote:
                              So ultimately, when i enter a row value of 0.5 and a column value of 0.3, my output will be 1.688.
    Sorry, Please explain.
    Please make a VI containing a simple 2D aray as diagram constant that contains e.g. 5x5 typical values. Let us know what kind of result you expect from your algorithm..
    LabVIEW Champion . Do more with less code and in less time .

  • How Calculate more than one value and store it into to different rows and column for each input?

    thx guys.....i have a progress now in LV
    But now i have new trouble here. Ok i attached my LV file (LV 7.0.1/7.1) and excel form. I just could'nt calculate more than one input value. I want a different result for each value that i enter ... and store it into different rows and column. But it just store at one row.
    Attachments:
    My Project.vi ‏31 KB
    rumus motor bakar.xls ‏14 KB

    duplicate post

  • Please help me :How to set the width and height for my View page "test.htm"

    Hi,
        I have controller class. When i call the view[test.htm]from this controller class ,i am getting the view with output tableview..it is fine.
    My requirement:
                 the output view window is showing full browser window. I want the view output like showModeldialog. I want to set the width and height for the output view window. How is possible?
                 or
    i want to call the test.view in the window.showModelDialog..
    Please help me .. Urgent requirement.

    Yes you can set the width & Height of the view as follows..
    <div style="width:580px; height:750px; margin-top:15px; overflow:auto;">
    <htmb:form......>
    </htmlb:form>
    </div>
    <i>*Reward each useful answer</i>
    Raja T

  • Need help in displaying Rows to Columns

    Hi,
    I am facing problem in displaying Rows to Columns
    I am using pivot function:
    select *
    from
    (select vendor_name
    from tablea)
    pivot
    (count(vendor_name)
    for vendor_name in ('a,b,'c'));
    its working fine showing vendor_name and count
    but when i want to display the output as:(How to include the Salalry column in the query?)
    Name:{a b c}
    Sal Total:(400,600,800}
    Any help will be needful for me

    Not sure what you mean:
    select  *
      from  (select deptno,sal from emp)
      pivot(sum(sal) for deptno in (10,20,30))
            10         20         30
          8750      10875       9400
    SQL> SY.

  • Need help setting up external hard drive for FCE project

    Hi folks,
    Basically I am looking at making a 20-30 minute video this summer of my motocross adventures and what not and have equipped myself with an iMac (2.93 GHZ Core2Duo 640GB 4GB) and of course, FCE. I have tried smaller projects before (ranging in length between 20 seconds to upwards of a few minutes) but have noticed an overall decline in computer speed which I am under the impression is being caused by the 10s of GBs of video project files and what not that seem to be scrawled away within my computer. Before I made any videos, my computer was sitting around 560 GBs of free space. Since making maybe 3-4 videos (50/50 iMovie and FCE) its down below 400GBs. I'm not sure whether it's the raw video files or the projects themselves that are so large, but it's slightly frustrating. Is there any sort of software (either third party or apple) that can look at your hard drive and tell you exactly where all the biggest files are? I'll post this question in the iMac forum as I realize this is for FCE, but I thought if anyone knew of one it would be extremely helpful.
    Anyways, I have a SimpleDrive 320GB external HD that I plan to use as my external for making this project within FCE and would like some help in terms of how to set it up with FCE, what are the best settings etc. It is currently formatted with Windows, so I will also need help in setting it up for a Mac. I do have about 120GBs used on it already and was also wondering if I could keep this when re-formatting, but I'm pretty sure I already know the answer to that.
    Sorry for the long-winded post; any information on this or something related would be fantastic. Thanks.

    Yes, you can use your external HD with FCE ... provided it is formatted as +Mac OS Extended+ and is connected via FireWire.
    You will need to back up any data that is on the drive that you want to keep. Before reformatting it. Formatting erases everything that is on the drive.
    Use Disk Utility (located in your +Applications > Utilities+ folder) to format the drive.
    After formatting the drive, go into +FCE > System Settings+ and change your FCE scratch disk location to the external drive.

  • I need help understanding export options and optimizing for web

    I have been using FCP X for a short while now and have a pretty good grasp on the editing capabilities. What I'm having a horrible time figuring out is the export/share options. The videos I create are typically approximately 1 minute in length and get posted to a web site (we have our own CMS and video player so I'm not using YouTube or Vimeo or anything like that). In order to post them I need them to be MP4s and then I have to create .webm and .ogv files. The source material I work with is generally great, high quality stuff, so I end up with very large output files from the initial FCP share master file options.
    When I use MPEG Streamclip to make my MP4s I end up with files that are still quite large and I can't seem to ever get the file size manageable without losing tons of quality. I do not have Compressor, though if that will solve my problem I will put in for the expense of it. What I'm trying to understand is what sorts of settings I should be trying out to get my file sizes to be manageable without completely compromising my quality. And I know this can be done, because the company I work for pays for a great quantity of video work each year (from an outside production firm) and the clips provided are beautiful in quality and small in file size -- for example, I recently worked on a video and got it into the 40MB range before quality went to crap, working off the same material the production company we do work with had theirs down into the teens and looking beautiful!
    To throw an even greater wrench in the works, I am working off a mac. But when my boss, on a pc, saves the mp4s I create (raw files -- not what is posted to the web) locally on his machine and views them from there the sound is always off a tad and the people in the videos look like they're lip synching.
    Any advice on either of these is MUCH appreciated. I've been trying to figure this out properly for months, and only today decided to stop seeing if someone else had the same question and just post my own.
    Bronwyn

    Thank you Karsten, this was helpful I have utilized the Quality slider and the frame size options before though with limited results. I've never messed with the Limit Date Rate option as I don't know what I'm doing with it, I see you put 5Mbps. Is that a typical setting that I could use?
    Using stream info, here's info on my original source file:
    Stream: Charles_0023_2.mov
    Duration: 0:00:51
    Data Size: 96.51 MB
    Bit Rate: 15.77 Mbps
    Video Tracks:
    H.264, 1920 × 1080, 29.97 fps, 15.64 Mbps
    Audio Tracks:
    MPEG-4 Audio stereo, 48 kHz, 127 kbps
    Stream Files:
    Charles_0023_2.mov (96.51 MB)
    As a comparison, here's the info on a similar clip that the company we sometimes use created:
    Stream: Charles_0019_4.mp4
    Duration: 0:00:49
    Data Size: 4.66 MB
    Bit Rate: 0.80 Mbps
    Video Tracks:
    JVT/AVC Coding, 710 × 400, 29.97 fps, 635 kbps
    Audio Tracks:
    MPEG-4 Audio stereo, 48 kHz, 162 kbps
    Stream Files:
    Charles_0019_4.mp4 (4.66 MB)
    I'm fine with bringing the frame size down some and modifying the limit data rate, but sometimes I feel like I'm forcing my video into something it's not and the quality suffers -- this is where my understanding of video work breaks down LOL. Any suggestions of how I can get my .mov into something like the the .mp4 above?
    Also have you had any experience with mp4s not playing back properly on pcs?
    Again, thank you!
    Bronwyn

  • Need help with IPhone 4S and upgrade for IOS 7

    I upgraded my phone last night to IOS 7.0.2 and this morning I went through all the initial set up questions and my phone was working.   Once I walked away and it turned off, it is asking me for a passcode to get back into my phone.   I did NOT have a passcode before I upgraded do not know what passcode it would be asking me to enter.   I have tried a couple different passcodes and nothing is working now my phones says it is "DISABLED".   Can anyone help?

    The upgrade to iOS 7.0 automatically turns on Passcode Lock....whether you want it or not. You probably don't remember the passcode you entered when prompted, but regardless, one was setup on the phone. To fix, & remove the passcode, follow the directions here to force the phone into recovery mode & restore it:
    http://support.apple.com/kb/HT1808
    This will remove the passcode.

  • Need help setting up approval workflow step for PO and Shopping Cart

    Hello,
    We are on SRM 7.0 and setup BRF and process level config for automatic approvals of SCs and POs using task 40007988. We would now like to test approval based workflow (create work item to route to approver) using a process level step.
    1) Is there a standard task that can be used to enter in the process level step? Or should we create a new standard task? If a new task is required, what import/export parameters should be defined?
    2) How do we setup agent for this step? Are the entries u201CResp Resolveru201D and u201CResp Resolver Parameteru201D in process level config required? The BADI BD_WF_RESP_RESOLVER already has some SAP delivered implementations? Should I create a new implementation here?
    Thanks,
    Zack

    Hi,
    Welcome to new Process-Controlled Workflow implementation in SRM 70.
    You can find the task list in the transaction PFTC. Task Group 40000003.
    Please activate the BC Sets in transaction SCPR20. Find the BC Sets /sapsrm/*.
    Regards,
    Masa

  • Ok I am having issues with my HP Enby 100 D410. Need help setting up eprint, and keeping connected.

    I opened up my printer, set it up, connected.  But I cant seem to keep connected.  I have an eprint email address set up, but the printer reset and now wants me to set up an new eprint using a different code.  How do I get the [email protected] email back.  It says "someone already has address..."  duh, that's me..!  This printer has been more than frustrating.  HP support says open 7 days a week, 24 hours a day.  But when I call, they are closed and only open during certain days and hours... why advertise differently?  I also cannot seem to get my printer to align the printer cart.. stops halfway.  Need this to test scanner.  Anyone with helpful advice?

    Hey mwright286!
    Sorry to hear you're having a problem with your Envy and ePrint! Let me see if i can address the issues you brought up here. HP support for printers is 24x7, if you are receiving a message otherwise you may be dialing the wrong number or selecting the wrong options through the prompts.
    As for the ePrint issue you're having, if the printer's Web services has somehow been reset and the printer gave you a new code to setup ePrint with, unfortunately that address is not available again for 6 months. Make sure you don't turn web services off and then back on unless necessary as this will reset the email address.
    If your printer is having alignment issues though, it is very possible that there is a hardware problem with the printer. Try following this document. If you are still having trouble with the alignment then you will want to call support at 1-800-hpinvent.
    Hope this helps!
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Need help deciding between AI and EPS for use in XML

    I am using a non-Adobe XML editing package/publishing engine. The vendor who set it up suggested that we use native AI files for editing and creating images, then export EPS files for use in the XML (it doesn't work with AI). The challenge is to keep the AI and EPS files in sync throughout the revision process.
    My question is around whether we really need to keep the AI files or not. What are the actual elements we would be missing if we skipped the AI and just used the EPS files? Are EPS files less editable? I plan to test this, but I'm looking for issues to keep an eye on through testing.

    I'm not sure whether PDF would be compatible, but I would not be surprised if it was not. If I create an image in Illustrator and save it as a PDF, will I be able to edit the PDF like an AI later? More importantly, is there anything from the AI format that would be missing in the PDF file?
    Bottom line is, I don't want to have to store two files for each figure, but I don't want to compromise the editability or rendering quality.
    Thanks for the quick answer!

  • Need help setting a breakpoint and watching a variable

    I have a very basic newbie question. I am trying to follow a variable's value through xcode's debugger. Here is what I have tried:
    1. set a breakpoint on the line of the variable I want to watch.
    2. click "build and debug"
    3. click "pause" in the debugger window
    However, none of the information that comes up in the debugger is recognizable as the variable I want to "watch".
    Is there something I need to do in the "breakpoints" window in order to watch a variable's value as I step through the program?
    Thanks in advance for any and all suggestions.

    I understand your point about the pause button stopping the program where ever the program happens to be when you hit the pause button. That actually makes intiative sense to me.
    In fact the only reason I tried the pause button was because the debugger did not seem to be stopping the way I expected (which by the way is exactly the behavior you just decribed).
    To follow last instructions as best I could I:
    1. Opened the project ClaendarView in /Develper/Examples/Carbon/
    2. Set a breakpoint in the file main.c line 51 (enum) by clicking in the gutter of the line 51. The preakpoint appears yellow.
    3. Clicked the debug button in the debugger window (the the "build and debug" button). I get a message about "running" and "program loaded" in the debugger window.
    GDB runs, and then a calendar window appears. If I understand your last point. the debugger should hit line 51 in main.c long before it executes enough code to open the application.
    Is there something more to setting a breakpoint besides double clicking in the gutter of the line number where you want the breakpoint?

  • Need help asap about point and shoot for inside

    trying to take pictures for auction listings, don'thave a lot of experience.  have been told about canon powershot and panasonic lumix - could you tell me what will be the easiest for me to use and give me the best inside pictures of objects to list - thanks!!!!

    The key to getting a good picture is to make sure that you can control the light and less about the exact camera as long as you do not purchase any junk.
    For auction images, you should invest in a small light box setup with multiple strobes/flashes that illuminte the item properly.  In order to do this, then you should get an inexpensive SLR.  You should also get a small tripod and remote shutter release that will allow you to make correctly focus pictures.
    Currently, Nikon and Canon are head to head when it comes to image quality with Nikon edging out Canon since they have recently introduced some really great lenses.  Sony is doing OK, but remember Canon and Nikon own 90 % of the camera market and the other 10% is left to everyone else.  Sony is having some problems with ISO images that contain a lot more noise than Canon or Nikon.
    Check out www.dpreview.com and www.luminous-landscape.com for reviews by photographers.
    I do not work for Best Buy and am not affiliated with them in any way. I like HT and want to help people improve their HT experience. "There is a LOT more than just having a TV to make a home theater"

Maybe you are looking for