Adobe BC Web Form Customization - Basic HTML

Hi all,
I've got a form that I created in BC, and obviously it looks like doo doo because that what standard forms look like in BC. I had created a form directly in Muse manually, but I needed the clickable boxes that BC offered, so I'm signed up.
Obviously, I know very little if not zero code, hence why I'm using Muse, so I have no idea where to start with customization in terms of the form (i.e. font colors, padding, etc).
I was wondering if anyone has gone through this before and maybe has a few tutorials they would like to share. Let me know your thoughts, thanks in advance.
What my form used to look like:

I've finally found a workaround for this! It may not be the most elegant solution and I don't know if it will help you, but it accomplished what I needed and it didn't break the form. Here's what it looks like now:
The text is now the font I want, and bigger, I was able to add the borders where I wanted them, plus do some other things.
Someone with knowledge of CSS & HTML showed me where to add the coding needed to change the look of the form. And with the help of this site: CSS Reference, I was able to take it from there (with a bit of trial and error). Here's what I did.
Once I had all the elements in the form that I needed, the first thing I had to do was insert the form on the site differently than I did before. Before, I had used 1-click insert, and tried to customize the HTML in Business Catalyst. That did not work for me, because the form would not accept any style changes. It seemed like it did, but after publishing it looked just as it did before.
Instead, I used the "Get Web Form HTML Code" under "More Actions" and copied the code. Then logged out of BC, and opened a text editor to paste the code into and add my modifications.
Now, to accomplish the style changes -- and here is where the trial and error comes in -- I had to add a <style> tag (forgive me if I am using the wrong terminology, I don't know what anything is called or what I am doing really... but the bottom line is I got it to work) at the very end of the form, between </script> and </form>. I was told it's important that it goes after the script. That's where I was able to add some CSS that accomplished what I needed.
With the help of Google Chrome and View>Developer>Developer Tools, I was able to find out what the various class names were that I needed to alter. If you don't know how the developer tools work, try to find someone who can show you or post back and I will try my best to explain. I will paste my code below so you can see what I did, but yours will of course vary because your form has different elements and you need a different look. I'm adding in bold what each class affected in case that saves you some searching.
<style>
(This first class is just the asterisks for the required fields, for some reason they are separate from the actual words)
.req{
font-family: verdana;
font-size: 14px;
(This class is the words that go with the asterisks, i.e. Name, State, etc.)
.webform label{
font-family: verdana;
font-size: 14px;
(This class is the various items that make up the Checkbox List)
.webform{
font-family: verdana;
font-size: 14px;
(Setting this class to 0px padding removed extra spacing between the fields)
.td{
padding: 0px;
(This class was for a multi-line custom field I added)
.cat_listbox{
border: 2px solid #f06823;
border-radius: 10px;
background-color: white;
width: 350px;
padding: 6px;
(This class was for all the other text entry fields, the ones I needed the orange border on, Name, State, etc.)
.cat_textbox{
border: 2px solid #f06823;
border-radius: 10px;
background-color: white;
width: 350px;
height: 26px;
padding: 0px 6px 0px 6px;
(This class was for the Submit button)
.cat_button{
border: 2px solid #f06823;
border-radius: 10px;
width: 177px;
height: 30px;
font-family: verdana;
font-size: 12pt;
color: white;
background-color: #f06823;
</style>
Back in Muse, I inserted the new code on the page by choosing Object>Insert HTML. After pasting it would sit there with a spinning wheel for a bit and eventually come up with an exclamation point and "Unable to generate thumbnail." (Ignore that.)  I then moved the box where it needed to go and resized it to touch the footer, so the page would stretch to accommodate the full form. After that I published the page and everything looked fine. You can use preview but in my experience it didn't show things the same as the published site.
I recommend that you create a test site (or at the very least a test page within your real site) where you can play with this to see how it works. Maybe use my code above and paste it in the right place to see how it changes things... and then customize for your own use. I did test the form after publishing and it does still work just fine. The only thing that broke a part of it for me was trying to change the background color for the date picker. It's a light gray (#F0F0F0) and I wanted it white. You can see it right there in the form's own HTML, but changing it to white made it stop working. The field was still there but the date picker would no longer pop up when clicking on the field.
ANYWAY! I know this is very long but I hope it helps you, or someone else if you've moved on.
Good luck! And if anyone with any CSS knowledge reads this and sees any problems with my solution, please do chime in...

Similar Messages

  • Web Form Editor - basic help needed!

    I must be the world's dumbest designer. I am trying to create a contact form in Business Catalyst to be placed in Muse. Now, I use Muse because I know very little about coding, so that is probably why I am struggling so bad creating this form. Typically, I use the form building widget in Muse to create my forms, but my client would like to include a dropdown list and an "add file" function to the form. I have watched a couple videos on youtube on how to set up a form, but I am getting hung up on the formatting. The form technically has everything I need, but it is horribly ugly! I have tried using the "Customize Web Form" option within BC (as well as the Style Builder), but nothing I do makes any difference.
    See for yourself:
    THis is what the form looks like in Muse. I manually added the blue box in Muse. There are so many things wrong I don't know where to start! The form fields are too small, I can't change the font or color and I want to get rid of the Title. I have tried playing with the code, but nothing works. Is there a tutorial somewhere teaching us how to edit a form using the built in web form editor?
    Thank you so much for your help!

    You need to assign a class to each input element and then target those classes with CSS.
    Example:
    <input type="text" name="FirstName" id="FirstName" class="cat_textbox" maxlength="255">
    CSS:
    .cat_textbox {
    width: 300px;
    height: 25px;
    border-radius: 3px;
    box-shadow: inset 1px 1px 2px 0 #DADADA;
    -webkit-box-shadow: inset 1px 1px 2px 0 #DADADA;
    border-color: #B6B6B6;
    border-style: solid;
    border-width: 1px;
    I can help you out more in a few hours. I highly recommend learning as much CSS & HTML as you can.
    -Ryan

  • Web Form Errors?

    Hi, sorry if this is in the incorrect section, couldnt find one specifically tailored to web forms.
    I am attempting to edit the content of a web form. When laying out the design of the form in the web form editor, the html  is not being updated with the changes I make. (I understand that the form needs to be inserted into a page, I am refering to html generated by the form editor) Specifically, when I drag an input field up or down to rearrange the order. The input field will 'click' into place, and I get a message saying that the layout has saved. Everything looks fine until I check the html code, the changes are not updating. If I check back to the form editor, everything looks fine again (in the correct order.)
    I have tried everything I can think of, deleting and recreating the incorrect input fields, using the 'update' button at the bottom of the screen, etc.
    The one thing I have found to work is that if I insert the form into a page, then rearrange the misbehaving input fields in the page html. This has worked, but then I am running into another problem that the data collected is still out of order. When a form is submitted, everything is in the wrong order in the email recieved by our accounting. This makes it very hard for them to sort it out and use the data.
    I have noticed that each 'custom input" field has a unique number, possibly it sorts them according to this?
    Thanks for the help!

    Web forms can be inserted into the page as html or as a module. If as the html the edits and changes you do there will only be there. Anything done differently in the admin will not appply to that for in terms of its layout.
    In the admin you have two things. Customise web form which runs updated changes so if you add as a module then what you change there will update in the module.
    The other, the get html is just a static non changing raw html source output which is there to be used if you were giving someone the working code for that form to be on a different website.
    If you are viewing that this will never change.
    In terms of what you see in the admin and the form order.. If you make ANY changes to the html of a form the system will not try and take control of the source of the form so the ordering will not change. This is for you to do in the html yourself if you want custom modifications to that form.

  • Automatically generate PDF from Oracle Applications web forms

    Hi,
    One can configure Oracle Applications to use a template (PDF, XSL, etc) for a certain web form, which basically allows the user to manually click a button on the form to Export it.
    On the other hand, how to do this automatically? In other words, is it possible to automatically export a form to PDF, and store it in DB, after a user inserts data?

    Hello Malas,
    if you don't need complex layouts, then try as_pdf_mini from Anton Scheffer
    http://technology.amis.nl/blog/8650/as_pdf-generating-a-pdf-document-with-some-plsql
    or
    http://reseau.erasme.org/PL-FPDF,1337?lang=fr
    Regards
    Marcus
    Edited by: Marwim on 14.03.2012 13:54

  • Is there a way to customize the web form link in Adobe FormsCentral?

    The dedicated link has a quite complicated address, not easily added to brochures to hand out.  Is there a way to customize the web form link in Adobe FormsCentral?

    It cannot be customized. The workaround is to create your own web page and embed our form into it. That way they only see your URL.
    Randy

  • I opened Adobe Acrobate XI Standard to create a form.  I then selected From Template, which took me to Adobe FormsCentral Online.  However, I think the form is an HTML web form.  All I wanted was a regular PDF form that I could email my co-workers for an

    I opened Adobe Acrobate XI Standard to create a form.  I then selected From Template, which took me to Adobe FormsCentral Online.  However, I think the form is an HTML web form.  All I wanted was a regular PDF form that I could email my co-workers for an internal project we're colletively working on.  Now I see that FormsCentral is going away and I can't get my doc to save as a PDF without an upgrade?  Help

    You should be able to log into the online Formscentral Acrobat XI air app and see your doc there. From there you would need to save it out as a PDF without a submit button to have it continue to work past July. If you don't see your online form(s) please let me know the adobeID you use to log into the service as well as the form name that is missing and I will look into it for you.
    Andrew

  • Help with Business Catalyst Web forms and Adobe Muse.

    I created a websform to log into a secure zone using business catalyst. I pasted the webform's html into Adobe Muse. After publishing my site. The websform I created in business catalyst is deleted, but I can see all of the forms that I created using Muse in the webform section. Is there a fix for this problem? Thanks
    This is the page with the forms. http://www.highestgoodclothing.com/login.html

    There is a workaround. It takes a little more work, but it is definitely worth it and will solve your problem. I subscribed and learned from tutorials on the www(.)trainsimple(.)com. They have a video series called "Muse CC Business Catalyst Integration" which was very helpful. The issue that everyone on here is referring to is covered in the 3 videos labelled, "Email Sign Up Checkbox", "Moving Muse Webforms to Business Catalyst" and "Email Marketing".
    Essentially, what you want to do is create a form in Business Catalyst, turn that form into a module, assign a tag to that module, then put the tag into Muse using Object > Insert HTML. This will solve Muse deleting the web forms everytime.

  • Adobe Pro 9 will not open web form

    when I go to aspacific web site and attempt to run a report which pops up as a web form.should be openning in Acrobat.Dream Weaver attempts to open the file.
    What is wrong?

    By "web form" do you mean an html < form> or are you talking about a .pdf that is opening wrong, or some other file type?
    Link to the offender?
    It may also benefit you more posting in either the
    Acrobat Forums: http://www.adobeforums.com/webx/.3bbeda8b/
    or the
    Dreamweaver Forum: http://www.adobe.com/cfusion/webforums/forum/index.cfm?forumid=12
    This is the GoLive Forum.

  • Hi, I have Adobe Acrobat Professional. And I'd like to create web forms through Adobe for my site. Do I have to subscribe? or is it included in my Acrobat Professional Software?

    Hi, I have Adobe Acrobat Professional. And I'd like to create web forms through Adobe for my site. Do I have to subscribe? or is it included in my Acrobat Professional Software?

    Hi there ferchandler,
    You can most definitely create and distribute forms using your Acrobat Pro software. Here's a link to the Acrobat Help, which has some good info to get you started: Acrobat Help | PDF forms basics
    And, there is a forum dedicated to forms as well: PDF Forms
    Please let us know if you have additional questions.
    Best,
    Sara

  • I have imported a PDF form (created in adobe acrobat XI pro) into FormsCentral.  I now want to convert this document into a web form so I can embed it into my website.  HOW DO I DO THIS?

    I took a word document I had created and added fields to it in Adobe Acrobat XI Pro.  I then imported the PDF in Forms Central and now I am stuck.  All I am able to do with it in FormsCentral is add a submit button.  It will not allow me to edit the document in FormsCentral.  What I ultimately need to do is get this converted to a web form so that I can embed it into our company website.  Additionally, once it's converted, I need to add an option for the user to attach their resume with the file before submitting.  I have looked all over the web and I cannot find an answer as to whether or not I can convert PDFs to web forms in FormsCentral.  This will ultimately determine whether or not the company decides to purchase these programs after the trial version has ended in a few days.

    I tried that first, but FormsCentral does not have the capability to create tables.  The form I need to create is more advanced than what FormsCentral allows.  Do you know if there is a way to create or somehow import a table when creating a web based form on FormsCentral?

  • Can I customise the HTML code in an eCommerce online purchase web form?

    The Adora template lets me customise the html code but then after saving the form it reverts back to the default. Can anybody tell me if I can customise this form or find where the form placeholder/HTML is located so that I can try and insert the html directly.
    Thanks in advance!

    Hi Brendon. Although the form is a custom web form the actual form you view is under the Registration Buy layout of eCommerce layouts.
    You need to copy the html you edit from the customise web form part of the form and paste it into that Registration Buy Layout too.

  • Convert HTML Web form to a PDF

    I have an HTML web form which will be filled out by a user online. Is it possible for me to convert this form and the data which has been filled in by the user to a pdf and save it to a file after the user selects submit?
    Thanks,
    Patti.

    Hi,
    Check out JasperReports / iReport. ( SourceForge )
    Nick

  • Are Live Web Forms part of Adobe Creative Suite?

    I work for a small business and we're looking to use a lot of Adobe's products through the Creative Suite. One thing I need to know before ordering, though, is if the suite allows for use of Live Web forms and response collection. I'm not sure if this is something that has to be paid for separately - although I do see Acrobat Pro is included in the suite. These forms would be used in email marketing. Is there an extra fee or is it all in one?? Thanks.

    Illustrator is not working as it should...
    I want them to compare the original size and date of creation with what I have installed on my computer... I have installed several times with my original CD and I tried once downloading the files from the adobe site (using my own license). I suspect the files has been modified or renamed on my laptop by an external unauthorized user causing the malfunction of the application. 
    Customer services does not support CS3 anymore and the updates / patches in the adobe site does not solve the problem... They redirect me to the forums for support...
    Presently, my problem is that after creating a swatch and drag it to the swatch panel, it does not fill as it should a new form... Now, after deactivating and activating my license the swatch seems to fill the new form but when the filter that the swatch has is persistence in the next filling object created even though a different color is being used as a fill (X)... Help in the creation of a swatch over the internet just complicate the issue.
    That's why I would like to know whether updates on my product are being received or files are being replaced without my knowledge...
    Thanks...
    PS Do you know how to contact a staff adobe employer on the forums?

  • Clling a Compiled HTML HelpFile Topic from Web Form

    Ben:
    I'm a project manager on a development project in a client's Oracle environment. We want to deliver help files from the unix server when a user presses the F1 key or the ? button. The application runs on the server and users have access to it through web forms. In the new web-based application, we want to be able to access compiled HTML Help files (.chm) AND a specific topic in the file - a context sensitive approach. Our developers are using the WEB.SHOW_DOCUMENT call and the help file name to get just the help file, but we can't figure out how to call a specific topic in the file (topic ID's and numbers have been assigned to each topic and the file is compiled with the ID's in it). Do you have any way to do this? If so, can you provide a script that works?
    Also, when the file is delivered, the users get the Open/Save dialog box prior to delivery. Have you ever heard of a way to supress this dialog programmatically so the user won't see the dialog? I have seen this work in the real world but have never been able to figure it out.
    Thanks.
    Eric Blythe ([email protected])

    Eric,
    You are asking a Forms/Microsoft Help related question.
    The Oracle Help Technologies Forum is intended to be a resource for OHJ (Oracle Help for Java) and OHW (Oracle Help for Web) product related issues. This forum is not intended for general help discussion.
    Having said that, here is a blurb from the Ehelp (RoboHelp) help system:
    "For context-sensitive Help to work properly, both the Help author and developer need to use the correct topic IDs in the same map files. This sounds fairly simple and straightforward except that the HTML Help engine requires a topic ID plus something known as a map number.
    The topic ID is matched with its corresponding map number in the map file. The entire string (known as a map ID) looks something like this:
    #define ID_PizzaDeliveryForm 101
    Any number between 0 and 4294967294 is valid, but the same map number cannot be used more than once in a Help project."
    For more info about Microsoft Help (HTML Help), visit the Microsoft site.
    Btw, Forms provides you with the ability to programmatically supress messages. See the Forms help system for details.
    Thanks,
    Ken

  • Making web forms using adobe pro XI

    Hi, one of my client sent his static form with bellow request to me. I'm using adobe pro XI & i want to know using it bellow request i can complete or not. if "YES" pls tell me what i should do. i know how to make fillable forms using his static form but i have no idea about web forms. thanks.
    my client request -
    "Do you make fill able forms that can be filled on my website and emailed back to me from my web site?"

    It's alo what mine looks like as well because I've not added anything At first I didn't know and no one would tell me. Then I just go used Tools menu. It far more complex to learn if you go to it Cold Turkey from using Menu bars which are vastly easier. It’s a shock to your system. But you learn to use tools menu evn though it takes far more time. You waste time clicking heading to find sub topics and sometimes items that should be grouped together are spread all over.  But, Hey Change is supposed to be good whether we want it or not.

Maybe you are looking for

  • Using Lightroom and Iphoto Together

    Can anyone point me to a tutorial or provide information on the best way to utilize Lightroom with Iphoto? I have read several posts which are contradictory in regards to importing photos into Lightroom from Iphoto. Some say to export files to Finder

  • Operations on Text File - Encrypt, Decrypt, Password Protected

    Dear Experts, My requirement is to upload a text file  and do some operations on it and then encrypt the content in it ans save it on application server with password protected. Later i want to decrypt it. Please help me for the following: How to enc

  • Using the original MAP price

    Hi, Just wondering how do you pull out the previous moving average price for a goods return? We have scenario in which business want the valuation of the return to pick up the moving average price base on the relevant previous goods issue transaction

  • Can't install Server Admin 10.5.6 update on G5 10.5.6 server

    Not sure if this is by design or if there's something wrong with my setup. I downloaded the 10.5.6 server admin tools update and attempted to run it on my server only to be greeted with the message "You cannot install Server Administration Software o

  • Unknown error when executing MDX when refreshing Crystal Report with BEx

    Hello Experts, I have created a Crystal Report (Crystal 2008 SP1) with BEx Query (7.10) and have been able to refresh successfully when the SAP_ALL authorization is included in my user role. I don't want my end users to have SAP_ALL so I created a ro