You need to Register for free and Login to post a message in the forum.

Forum

DotNetNuke Feedback Module - Issue 54
Last Post 2012-01-18 04:07 PM by Joseph Craig. 34 Replies.
Printer Friendly
  •  
  •  
  •  
  •  
  •  
Sort:
PrevPrev NextNext
You are not authorized to post a reply.
Page 2 of 2 << < 12
Author Messages
mlorenceUser is Offline
Nuke Active Member
Nuke Active Member
Posts:31

--
2010-04-02 11:29 AM
<!--[if gte mso 9]> Normal 0 unctuationKerning/> false false false oNotPromoteQF/> EN-US X-NONE X-NONE ontGrowAutofit/> ontVertAlignCellWithSp/> ontBreakConstrainedForcedTables/> ontVertAlignInTxbx/> MicrosoftInternetExplorer4 <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4; mso-font-charset:1; mso-generic-font-family:roman; mso-font-format:other; mso-font-pitch:variable; mso-font-signature:0 0 0 0 0 0;} @font-face {font-family:Calibri; panose-1:2 15 5 2 2 2 4 3 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:-1610611985 1073750139 0 0 159 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-unhide:no; mso-style-qformat:yes; mso-style-parent:""; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:11.0pt; font-family:"Calibri","sans-serif"; mso-fareast-font-family:Calibri; mso-fareast-theme-font:minor-latin; mso-bidi-font-family:"Times New Roman";} .MsoChpDefault {mso-style-type:export-only; mso-default-props:yes; font-size:10.0pt; mso-ansi-font-size:10.0pt; mso-bidi-font-size:10.0pt;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.0in 1.0in 1.0in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> <!--[if gte mso 10]> I added the Feedback module to my page and my client says......

I think this would be ok, but it is to squished together.  Can you give is more space and make it larger?  And can you get rid of the blue question marks?


How can I accomplish these task?  Please advise.


Thanks, Marion



Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9299
Avatar

--
2010-04-03 12:37 AM
This tutorial will teach you some techniques to identify CSS components and to style them: Troubleshooting DotNetNuke Skins


To get rid of the help question marks, you will want to identify the ids of the marks, and then set them not to be displayed.  For example:

                    #dnn_ctr913_Feedback_plEmail_imgHelp{display:none;}

Your Feedback module will have a different id, which you can find from the page source or by using the techniques outlined in the tutorial.

You can spread out the text boxes vertically by applying a style to the SubHead class.  To keep it to the Feedback module, use the header and footer module settings to wrap the module in a div and specialize the CSS to SubHead for that div's class (one that you create).



Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
mlorenceUser is Offline
Nuke Active Member
Nuke Active Member
Posts:31

--
2010-04-03 12:45 PM
I got rid of the question marks and the alt text. However, I so not understand how to do the following............

You can spread out the text boxes vertically by applying a style to the SubHead class. To keep it to the Feedback module, use the header and footer module settings to wrap the module in a div and specialize the CSS to SubHead for that div's class (one that you create).

I am using Visual Studio and I found a Settings.ascx file. Do I put a div tag around the whole table like this.......
Form table code goes here


Then add the following in the style sheet located in host>Site>Style sheet editor?

#contactUsForm .SubHead {margin-top:10px;}

Marion






Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9299
Avatar

--
2010-04-03 02:54 PM
I don't recommend doing this in the ascx file.  You want to add the div around the actual module instance.  So, on the page that contains the module open the Module Settings.  In the Advanced section you will see a Header and a Footer.  You can add something like this:

Header
< style >
.myFeedback SubHead{padding-bottom:30px;}

< div class="myFeedback" >

Footer



That will put the div tag around only that instance of the Feedback module.  You can put your other styles in the header, too.



Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
mlorenceUser is Offline
Nuke Active Member
Nuke Active Member
Posts:31

--
2010-04-03 10:25 PM
I tied following your directions and the code just shows up on the front  of the page before and after the form.  The header and footer areas in the feedback module  advanced settings area are not editors, just text boxes. I am running dnn 05.02.02

Marion






Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9299
Avatar

--
2010-04-03 11:01 PM
If you just copied and pasted my code, you probably didn't remove the spaces that I inserted so that the forum software wouldn't interpret as code. 

The header and footer are just text boxes, yes, but you put html text there.  If you are inserting tags and do it wrong, they won't be interpreted correctly.



Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
mlorenceUser is Offline
Nuke Active Member
Nuke Active Member
Posts:31

--
2010-04-05 01:40 PM
In my Feedback module>advanced settings
I entered the following which got ride to the question marks and alt text.  I am still trying to make space between the Name, Subject amd Message labels and the previous form fields.  I have been experimenting with the Name label pulling information form the code revieled in the Firefox WebDevelpers Toolbar. Note the follwing...... It does not make a difference.  I have enclosed a screen shot for your viewing.  Please advise.

Header

(NOTE: code is in the attachement)





Footer



In the screen shot image, you will note the Email Field and the Name field show a default entry.  I want to remove those.  Please tell me how to do this.  (They do not show up in IE, only in Firefox)

Thanks,
Marion

145401666671.txt
145401668354.jpg

Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9299
Avatar

--
2010-04-05 01:52 PM
If you use something like the SubHead coding that I showed in an earlier message, you will be able to create some vertical spacing between the elements.

I believe that pre-filling some of the boxes is related to being logged in or not and should not depend on the browser.  Try logging out and see what you get.



Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
mlorenceUser is Offline
Nuke Active Member
Nuke Active Member
Posts:31

--
2010-04-05 04:13 PM
Thanks!  Now it is just perfect.  http://mailhandling.com.dnnmax.com/...actUs.aspx

Marion


JudeJosephUser is Offline
Nuke Newbie
Nuke Newbie
Posts:9

--
2011-02-23 02:37 AM
Can you use different feedback forms on the same site? when I add a new feedback form i seem to get the results from another form on the contact us page which i don't want. How can I add different feedback forms to the same site on different pages?


Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9299
Avatar

--
2011-02-23 03:28 AM
The Feedback module isn't designed to have separate sets of feedback. You'd have to use another form if you want to do something like that.

You could, though, use Dynamic Forms or Form Master or even the Form and List module to create separate forms and keep the feedback inputs separate. Then you could use the Report Module for reporting and/or posting feedback results. You



Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
vanda pandeyUser is Offline
Nuke Newbie
Nuke Newbie
Posts:2

--
2011-06-09 06:54 AM
Hi All,

Can any body help me plz i am working on DotNetNukes 5.0(DNN)CMS.
I am working on server,i hav added a new inbuilt feedback module in a page.It has Name,Email,Subject,Message that is predefined.

I want to add Purpose (with a dropdown list),City (Textbox),Company Name (Textbox),Mobile No(TextBox),WebSite(TextBox).

Please help me for the same with some setting to be follower rather then Code .

Thanks in Advance.


Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9299
Avatar

--
2011-06-09 11:01 PM
See my answer to your other question.



Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
Brian WalkerUser is Offline
Nuke Newbie
Nuke Newbie
Posts:9

--
2012-01-17 04:31 PM
I have been unsuccessfully trying to get the feedback module to send to multiple email addresses based on the category selected. Sending to one address is not a problem but when I add two email addresses as the value it will not send. I have tried separating the addresses with commas and semicolons.

Any idea if this is even possible? According to the release notes it can be done but does not specify if it can be done based on category selection.

Thanks,
Brian


Joseph CraigUser is Online
DNN Creative Support
Nuke Master VI
Nuke Master VI
Posts:9299
Avatar

--
2012-01-18 04:07 PM
The answers to the question you asked over on the DotNetNuke forums seem correct.



Joe Craig, DNN Creative Support

Subscribe to DNNCreative
I recommend PowerDNN for DotNetNuke Hosting.
You are not authorized to post a reply.
Page 2 of 2 << < 12


Active Forums 4.3

Latest Forum Posts

Rename or move site from domain name to subdomain name by Bill Quinn
Hi, I have an old DNN site on a a TLD like this: websitename.com I have created a portal on
RE: Deploying dnn by Sameer
Thanks joeseph glad with your answer it means i can use CE for my site if the traffic are not
Unable to Create Skin Package by schilders
Hi, I'm trying to create the skin package and manifest for my new skin. I created the new skin e
RE: user adding images by Joseph Craig
I think that you will need to go to the File Manager and give the user and/or security group file up
RE: lightroom effect for skin by Joseph Craig
There are modules available that do this. On the commercial side, I've used Mandeeps' Live Conten
RE: Creating structured page content by Joseph Craig
Take a look at Ventrian's News Articles module. While commercial, it has a very modest price! Th
Creating structured page content by Stephen Bugden
Hi, Can anyone recommend a module for creating and managing page content? The kind of thing I'
lightroom effect for skin by everett31
I’m looking for a way to add the lightbox effect to a skin file. I would like the end user to have
RE: css3-mediaqueries.js and Dynamic Forms Crash Page in IE by WinXnet
According to my web searching, @font-face references cause crashing in IE7 and IE8 with css3-mediaqu
user adding images by rod lloyd
I have set up permissions for certain users to edit a module, but when they log-on and enter Edit Co
RE: Deploying dnn by Joseph Craig
The free Community Edition of DotNetNuke is perfectly fine for creating "world class" websites. Whi
RE: css3-mediaqueries.js and Dynamic Forms Crash Page in IE by WinXnet
any idea what approach I should take - IE completely locks up. The only cause is the combo of the
RE: css3-mediaqueries.js and Dynamic Forms Crash Page in IE by Joseph Craig
If you're up to doing some debugging, you might be able to figure out where the problem lies. That'
RE: Deploying dnn by Sameer
Hi Joe Thanks for your reply i am planning to create my own DNN site so for that i have chec
RE: css3-mediaqueries.js and Dynamic Forms Crash Page in IE by WinXnet
Thanks for the response, but I was hoping it was something I could fix with some skin tweaks - one i
RE: Changing Search text by Joseph Craig
You will want to look here for references about the DotNetNuke skin objects. The document written b
Changing Search text by Abraham Tameru
Hi, Instead of having "Search" text near the search text box, I wanted to replace it by an image
RE: Strange issue with file manager on sub domain (sperate portal) by Web Services
Just sent it.
RE: Not able to load my dotnetnuke website on Internet Explorer though it is working fine with other browsers by Joseph Craig
Did you get this fixed? (Apologies for not getting to this sooner...)
RE: Web Design Company London by Johnny Gregory
Hello I am a Manager here at PowerDNN and I would like to see if you are still looking to get the wo
You are not logged in.
You must log in to access all 
650+ videos, tutorials, podcasts, and more.
RSS Feeds