| Login failure (cannot modify header) PHP/MySQL |
|
 |
Index ‹ dreamweaver
|
- Previous
- 1
- Newbie User Authentication questionsHi,
Just upgraded to Studio 8 and have completed the rather good execise relating
to setting up user authentication
http://www.macromedia.com/devnet/dreamweaver/articles/auth_users_print.html
Question 1
Is this setting a session cookie ont he client machine and a temporary session
variable on the server? If so is it possible to check this for my own peace of
mind.
Question 2
How resilient is the code generated here. Is it a gift to hackers
Question 3
Towards the end of the article there is a section about logging the user OUT
but it stipulates that the user must close the browser window otherwise they
can hit the back button and carry on as if logged in.
This seems a bit strange to me as it doesnt match my experience of site
logins. Surely there is a way of deleting the cookie fromt he client machine.?
I am using CFMX7 and am sure there is a way of getting rid of the session
variable from the data using I think cfflush. Can anyone help me with this?
- 1
- Limit Table TextWhat server model are you using? For ASP/VBScript, I'd do the following:
Problem 1:
Don't use <PRE>, but substitute carriage returns for <br> using the VBScript
Replace() function -
<%=Replace(chr(13), "<br>", rsRecordset.Fields.Item("myField").Value%>
That will naturally wrap any text as it should, and replace any hard return
entered in the text field with an HTML line break. Since most folks hit
return twice to start a new paragraph in a text field, the effect will be
similar in the rendered HTML.
Problem 2:
Use the Left() function in VBScript -
<%=Left(rsRecordset.Fields.Item("myField").Value, 250)%>
That oughta do it. If you're using a different server model, there are ways
of doing the same in other languages.
Best regards,
Chris
- 2
- XSL , XML, Chilisoft ASPI have created a asp page that shows xml data using a xsl transform. It works
great on my IIS ( testing server) but not great when the site go's live as my
service provider uses Chilisoft ASP ( or whatever the new name is from sun).
Here is the error message!
MM_XSLTransform error:
Required object ("MSXML2.FreeThreadedDOMDocument") from Microsoft XML Core
Services (MSXML) is not installed.
Download and install the latest version from <a target=_blank
class=ftalternatingbarlinklarge
href="http://msdn.microsoft.com/xml">http://msdn.microsoft.com/xml</a> before
continuing.
Dreaweaver assumes I will be using an IIS server.
Has anyone got experience with chilisoft ASP and what I can do to get the page
showing correctly. Or a link to a page that could help me get the correct
wording and include files.
Thanks in advance
- 2
- How to treat template tags as comment tags?Hi all,
I am using DW MX to edit templates for a FreeMarker application.
The template tag fromat is like so:
<ul>
<#list birds as bird>
<li>${bird.name?cap_first}: ${bird.description}
Favorite food: ${bird.favoriteFood}
</#list>
</ul>
Can I get Dreamweaver to treat
<#list birds as bird>
and
</#list>
as comment tags?
I want them to disappear or reduce to icons like ASP code.
Thank you!
Bear
- 2
- Session variables not making sense to meI have been trying to create a simple little if statement where if a certain
var is incremented by clicking on a link, then a new date is shown. It works
in a fashion but then stops after the else statements go further than 4. Not
sure what's happening here, but I'm sure someone out there will be able to give
my head a shake for me.
2 pages. Both asp. Display page and update page. So if you click on a link
on the display page, you get transferred to the update page, which changes the
sesh var, then immed redirect back to the display page. The date being shown
is in a var called "dateX". Here's the code on the display page that works,
but only for the first 4 statements. Once you get to the 5th, it just holds
the last state of "dateX". Any thoughts?
<%
if (Session.Contents("varQuart1")==0){Session("dateX")=new
Date(Session.Contents("dateXYear"),Session.Contents("dateXMonth"),1)}
if (Session.Contents("varQuart1")==1){Session("dateX")=new
Date(Session.Contents("dateXYear"),Session.Contents("dateXMonth")+3,1)}
if (Session.Contents("varQuart1")==2){Session("dateX")=new
Date(Session.Contents("dateXYear"),Session.Contents("dateXMonth")+6,1)}
if (Session.Contents("varQuart1")==3){Session("dateX")=new
Date(Session.Contents("dateXYear"),Session.Contents("dateXMonth")+9,1)}
if (Session.Contents("varQuart1")==4){Session("dateX")=new
Date(Session.Contents("dateXYear"),Session.Contents("dateXMonth"),1)}
if (Session.Contents("varQuart1")==5){Session("dateX")=new
Date(Session.Contents("dateXYear"),Session.Contents("dateXMonth")+3,1)}
if (Session.Contents("varQuart1")==6){Session("dateX")=new
Date(Session.Contents("dateXYear"),Session.Contents("dateXMonth")+6,1)}
if (Session.Contents("varQuart1")==7){Session("dateX")=new
Date(Session.Contents("dateXYear"),Session.Contents("dateXMonth")+9,1)}
if (Session.Contents("varQuart1")==8){Session("dateX")=new
Date(Session.Contents("dateXYear"),Session.Contents("dateXMonth"),1)}
if (Session.Contents("varQuart1")==9){Session("dateX")=new
Date(Session.Contents("dateXYear"),Session.Contents("dateXMonth")+3,1)}
%>
- 2
- Parsing Error ..... Dreamweaver.Hi all,
I m using Dreamweaver Mx2004.
I m facing an error while running a web page that contains Data Controls.
The error shown is : "DreamweaverCtrls.Exe" could not be loaded while parsing.
This errors comes suring Parsing
Please treat it urgent and guide me...
Thanx in advance...
Mohit Raghav.
- 5
- DW8 accessing online MySQL DBI have set up a local MySQL server and have been building a site in php, using
DW8. Everything is going nicely and it is now time for me to start placing
things online to test and complete the site.
I have FTP access to my online php files, and have phpMyAdmin available to me
to replicate the local database online. Dreamweaver doesn't seem to want to
connect to this database though .. so i can't see how I can replicate the
connection from within DW8. I am unable to set up recordsets and access tables
.. any idea how I get around this? .. It can't be the first time this has
cropped up?
thanks in advance .. any help is appreciated... seems to be the final fence to
jump but it's a big one.
- 6
- LayersHi.
I am currently doing a project that requires overlapping of 2 layers. It looks
okie in the workspace, but when I previewed it using I.E, it shows the bottome
layer on top of the 1st layer. Is there anything that I can do to make the
bottom layer show up instead?
=D
- 6
- Database Linked/Passwords not workingI used coldfusion and access to create a database for my page and i am doing a
practice test using the CF built in server....everything seems like it has
connected fine, but when I do the preview in browser and I enter my username
and password info, it takes me to my failed login page...
I used the tutorial found here
http://www.communitymx.com/content/article.cfm?page=1&cid=A222302CBCA928EB
to create my access database...
can anyone help me on why this wouldnt work?
Thanks
- 12
- Coursebuilder Pop-up MessagesHow do I change the look of the pop-up feedback messages in Coursebuilder.
Currently they come up as unattractive gray boxes. I would like to change them
to blue or some other color and remove the caution sign.
- 12
- 405 Method not allowed - connecting to a Access databaseHi everyone
I have installed the Dreamweaver MX 2004 7.0.1 and since then I can't make
connections to databases, I always get the message "Error 405 Method not
allowed", this is very strange because I didn't change anthing on the server, I
just changed from Dreamweaver MX to MX 2004.
Does anyone know why is this happening?
- 15
- Switch off code when not requiredHi,
I have a piece of code above the head section of my asp page that sends a
text message when the page is submitted.
What I need is a checkbox that can switch off the code when no text message
is to be sent.
Any ideas anyone please? Code below.
Thanks in advance
Simon
' Sending SMS
'Dim sUrl
' Dim sAPI_ID, sPassword, sUsername, sMobileNo, sText
' Dim oXMLHTTP, sPostData, sResult
'
' sUrl = "http://xxxxxxxxxx"
' sAPI_ID = "xxxxxxx"
' sPassword = "xxxxxx"
' sUsername = "xxxxxxxxx"
' sMobileNo = "" & rsBooking.Fields("MOBILE_NO").Value
' sText = "Message: " & rsBooking.Fields("Message").Value & vbcrlf &
"Driver Name: " & rsBooking.Fields("DRIVER_NAME").Value & vbcrlf & _
' "Driver Mobile No: " &
rsBooking.Fields("DRIVER_MOBILE").Value & vbcrlf & "Vehicle: " &
rsBooking.Fields("DRIVER_VEHICLE").Value & vbcrlf & _
' "Registration: " & rsBooking.Fields("VEHICLE_REG").Value
' sPostData = "api_id=" & sAPI_ID
' sPostData = sPostData & "&user=" & sUsername
' sPostData = sPostData & "&password=" & sPassword
' sPostData = sPostData & "&to=" & sMobileNo
' sPostData = sPostData & "&text=" & sText
' Set oXMLHTTP = Server.CreateObject("Microsoft.XMLHTTP")
'
' oXMLHTTP.Open "POST", sUrl, false
' oXMLHTTP.SetRequestHeader "Content-Type",
"application/x-www-form-urlencoded"
' oXMLHTTP.Send sPostData
'
' sResult = oXMLHTTP.responseText
' Set oXMLHTTP = NOTHING
' Response.Write("result=" & sResult & "&")
- 15
- Image ProcessorDoes anyone know of an image processor which will also add text to any image
a user uploads?
currently using one by George Petrov but it doesn't add text
- 15
- from front page to dreamweaverI have been working on an existing site originally set-up in Front Page on a
PC, have just bought a Mac, so need to change from Front Page on PC to
Dreamweaver MX on Mac
Does anyone know an easy way???
- 15
- Testing......how do I test?I'm trying to test a web page that was built using ASP.NET C#. I've set up a
testing server (the same server as the live site, just a separate folder), but
when I go to DataSet and set a connection I can't connect. I just keep on
getting an error message saying that I can't connect because of an unidentified
error. I already have a web config file for the site, but don't seem to be able
to import those setting. I need to test it because although the site was
already built I'm changing the XML feed and I need to make sure that it is
working okay.
Thanks for your help,
Lucy
|
| Author |
Message |
jtowne

|
Posted: 2007-3-16 22:29:54 |
Top |
dreamweaver, Login failure (cannot modify header) PHP/MySQL
I have a login form 100% Dreamweaver8 built using PHP/MySQL. After logging in
it fails to goto the $MM_redirectLoginSuccess page (index.php). I did not have
this issue prior to the 8.02 update. I designed it the same way as I had
before the 8.02 update. I have checked multiple times for whitespace before
and after the PHP open and close tags in Dreamweaver and other text editors.
Below is what info is needed I hope.
[b]Error[/b]
PHP Warning: Cannot modify header information - headers already sent by
(output started at /var/www/web4/web/login.php:4) in
/var/www/web4/web/login.php on line 72, referer:
[b]Code (All Dreamweaver 8 Generated)[/b]
<?php
// *** Validate request to login to this site.
if (!isset($_SESSION)) {
session_start();
}
$loginFormAction = $_SERVER['PHP_SELF'];
if (isset($_GET['accesscheck'])) {
$_SESSION['PrevUrl'] = $_GET['accesscheck'];
}
if (isset($_POST['username'])) {
$loginUsername=$_POST['username'];
$password=$_POST['password'];
$MM_fldUserAuthorization = "Account_Type";
$MM_redirectLoginSuccess = "index.php";
$MM_redirectLoginFailed = "loginfailed.php";
$MM_redirecttoReferrer = false;
mysql_select_db($database_dnsturtle, $dnsturtle);
$LoginRS__query=sprintf("SELECT Email, Password, Account_Type FROM accounts
WHERE Email=%s AND Password=%s",
GetSQLValueString($loginUsername, "text"), GetSQLValueString($password,
"text"));
$LoginRS = mysql_query($LoginRS__query, $dnsturtle) or die(mysql_error());
$loginFoundUser = mysql_num_rows($LoginRS);
if ($loginFoundUser) {
$loginStrGroup = mysql_result($LoginRS,0,'Account_Type');
//declare two session variables and assign them
$_SESSION['MM_Username'] = $loginUsername;
$_SESSION['MM_UserGroup'] = $loginStrGroup;
if (isset($_SESSION['PrevUrl']) && false) {
$MM_redirectLoginSuccess = $_SESSION['PrevUrl'];
}
header("Location: " . $MM_redirectLoginSuccess ); --------------------Line
72
}
else {
header("Location: ". $MM_redirectLoginFailed );
}
}
?>
|
| |
|
| |
 |
gareth

|
Posted: 2007-3-17 1:14:00 |
Top |
dreamweaver >> Login failure (cannot modify header) PHP/MySQL
I take it you have an include file as well on the page, to reference the
database? Check in there for whitespace.
--
Gareth
http://www.phploginsuite.co.uk/
PHP Login Suite V2 - 34 Server Behaviors to build a complete Login system.
|
| |
|
| |
 |
jtowne

|
Posted: 2007-3-17 2:07:00 |
Top |
dreamweaver >> Login failure (cannot modify header) PHP/MySQL
I already checked that also. Again it is whatever Dreamweaver created in the Connections folder.
|
| |
|
| |
 |
| |
 |
Index ‹ dreamweaver |
- Next
- 1
- In need of great helpHi all,
I know that you get this a lot, but I really need help on this one. here it
goes..
Please someone tell me how to display a recordset field on a texbox
dynamically when a list/menu onchange event is activated.
I have created a list box and its being populated dynamically from a MSAccess
database. What I want to do is to display a data on a texbox when I select a
record from the listbox.
For example:
I have a database(dbEmployee) having one table (tblEmp) with two fields:
1)Emp ID
2)EmpName
The "EmpID" field is populated on the listbox on my ASP page. Now all I need
to know is how to display the "EmpName" field on the textbox, and that the data
that will be displayed on the textbox is within the recordset of the data that
I selected from the listbox.
A lot is tellin me that I should use javascript, and they are showing me a
tons of codes. You know that being a newbie on ASP coding is really hard for me
to read all those codes. I hope that you understand what I'm trying to ask. I
will be surely grateful for any help on this. Thank you very much.
- 2
- 3
- Coursebuilder drag&drop in FirefoxHello again. It looks like my newbie'ness is showing through rapidly, here!
Having fixed my problem with showing messages with SetTextofLayer... I am
straight into my next problem ;)
I created a drag & drop page. I kept everything at defaults.
When I preview under IE 6.0.29 it all works splendidly.
When I preview under Firefox 1.5 the "drag" images are not draggable.
I found some comments that suggest things work with Firefox for some people
for drag&drop... and others that suggest they don't!
I found some other comments that Dreamweaver 4/Coursebuilder was released
before Netscape 6 and doesn't work with that - but I'm on Dreamweaver MX... so
I'm hoping that things got fixed in the meantime and that they will now be able
to work.
a) has anyone got a solution for this one?
b) is there a definitive list of what works/doesn't with the current version
(CourseBuilder for Dreamweaver MX 2004, V4.3.8) I have looked on the Exchange
download and it says it works with "Internet Explorer 6,5.5,5,4,3 | Mozilla 1.0
| Netscape 7,6.2,6,4.75,4.7,4.5,4,3" so I'm assuming Mozilla 1.0 == Firefox!
I'm starting to wonder if any of it works with Firefox at all - and the last
thing I want is to be tied to only producing courses on IE.
Thanks,
Mark
- 4
- WTF - Client Form Spamming here too - ASPI just got a call from one of my clients telling me that he is getting the
same spam mail through his client contact form.
I just read about it on the forum today. Now there is a coincedence.I read
the article for php and it does not help.
Is it possible if I make the "To:" a Request() item, would it fix the
problem?
Any tutorials or ways to stop this in ASP using this email script:
<%
Set objEMail = Server.CreateObject("CDO.Message")
Set objConfig = Server.CreateObject("CDO.Configuration")
Set Confi = objConfig.Fields
Confi("http://schemas.microsoft.com/cdo/configuration/sendusing") = 1
Confi("http://schemas.microsoft.com/cdo/configuration/smtpserverpickupdirect
ory") = "C:\inetpub\mailroot\pickup"
Confi.Update
Set objEMail.Configuration = objConfig
objEMail.To = "email***@***.com"
objEMail.From = "" & Request("email") & ""
objEMail.Subject = "Comments from the Contact Us page"
objEMail.TextBody = "" & Request("name") & " from " & Request("company") &
" ( " & Request("phone") & " ) has submitted " & Request("subject") & " for
the " & Request("department") & " department. " & vbCrLf & " "& vbCrLf &
"Comments or Questions:" & vbCrLf & "" & Request("comments") & "" & vbCrLf &
" "& vbCrLf & "They " & Request("reponse") &" like a response."
objEMail.Send
Set objEMail = Nothing
%>
- 5
- Flash PromptWe are in need of a script that will recognize what type of flash the users
browser has and will prompt them if they do not have the flash that we used for
our videos.
If anyone has any premade scripts or ideas on how to accomplish the task in
dreamweaver they would be greatly appreciated
- 6
- M I-5'Persecuti on their metho ds and tacti cs-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
-= MI5: methods. and tactics -=
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
They deliberately. set out to harass in a way that would resemble the
symptoms of schizophrenia, so that any report of the harassment. would be
taken as. indicating mental illness and "treated" accordingly. They never
show their own faces; they only work through proxies,. in the media, among
the public, and by manipulating people. in the workplace. Since they do not
declare their identity there is no evidence. to initiate legal action
against the security services or anyone else.. The only people you can
prosecute are the proxies and they will deny knowledge of any. conspiracy.
By repeatedly humiliating and abusing the. victim, they induced mental
illness. This is the. worst form of human rights violation: making any
statement of the harassment appear to be symptomatic of the illness. which
they cause through the harassment. That this can happen, and. people collude
by silence,. is absolutely horrifying.
From the beginning. in June 1990 they set a pattern of harassment which they
have followed without change for the. last six years. They paint me as a
"threat". to which people must "react" (shades of Nazi persecution methods),
while simultaneously portraying their hate campaign on which. they have
spent over a million pounds of taxpayers? money as a "joke".
The MI5 that breaks the law. with the silent complicity of the police is the
same agency that is now seeking a. role in the fight against crime. Perhaps
the real joke is the proposed involvement in the. implementation of justice
of an organisation. which commits criminal acts with secrecy and disinterest
for. the legal process.
2175
- 7
- PUMPING OIL CAUSES QUAKEs & TSUNAMIsThis is a multi-part message in MIME format.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="MSHTML 6.00.2800.1106" name=GENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=#ffffff>
<DIV> </DIV></BODY></HTML>
- 8
- Dynamic MenusCan you share your code for your recordset?
Thanks,
Drew
"stacekz" <email***@***.com> wrote in message
news:dhu434$nbh$email***@***.com...
>I have a few dynamic menus in my "Insert Page" that pulls their data from
> seperate tables. If I tell this dynamic box to "select value equal to:" I
> receive the error message stating that BOF or EOF is true. If I leave
> "select
> value equal to: " blank then I do not receive this error, but the value
> selected also does not insert into my database when I select "submit". I
> tried
> many different things including changing relationships in the Microsoft
> Access
> database that it is storing into. Anyone else have this problem? How did
> you
> resolve it?
>
> I am using Macromedia Dreamweaver MX 2004, MIcrosoft Access database, ASP
> JavaScript.
>
> See code below:
>
>
>
>
> <td><select name="Department">
> <%
> While (NOT RR_Departments.EOF)
> %>
> <option
> value="<%=(RR_Departments.Fields.Item("Departments").Value)%>"
> <%If (Not isNull((RR_Insert.Fields.Item("Department").Value))) Then If
> (CStr(RR_Departments.Fields.Item("Departments").Value) =
> CStr((RR_Insert.Fields.Item("Department").Value))) Then
> Response.Write("SELECTED") : Response.Write("")%>
>><%=(RR_Departments.Fields.Item("Departments").Value)%></option>
> <%
> RR_Departments.MoveNext()
> Wend
> If (RR_Departments.CursorType > 0) Then
> RR_Departments.MoveFirst
> Else
> RR_Departments.Requery
> End If
> %>
> </select>
>
- 9
- contribute publishing services +Hi,
As part of a test for an organisation I'm contracted to at the moment
we're evaluating CPS. The plan is to eventually implement it utilising
the LDAP authentication which I've setup a few times previously in
other roles, but here the IT dept. is decentralised, and thus getting
anything done takes some time.
What I am wanting to find out is the XML structure for the File-based
User Directory (user_directory.xml) file that is used, in particular
using the users current Windoze password.
Any help greatly appreciated.
Thanks in advance people.
- 10
- Hyperlink in a Repeaterhi i have a repeater control with the following hyperlink in it:
<asp:HyperLink id="ProductHyperLink" runat="server" NavigateUrl='<%#
"../default.aspx?ProductID=" & DataBinder.Eval(Container.DataItem,
"ProductID") %>' Text='<%# DataBinder.Eval(Container.DataItem, "ArtistName") %>
- <%# DataBinder.Eval(Container.DataItem, "Name") %> '></asp:HyperLink>
however it throws an error saying:
Overload resolution failed because no accessible 'ToString' accepts this
number of arguments
i am thinking it cant accept more than one database field?? so i was wondering
how would i create a string for each item in the repeater?
Tuppers
- 11
- Listbox in an update pageWhen the first record is being selected, that usually means the data is not
being filtered correctly. Check and make sure the method matches. Since
you are submitting via a form, make sure you're using Request.Form to filter
the data.
--
Nancy Gill
Team Macromedia Volunteer for Dreamweaver MX/UltraDev
http://www.macromedia.com/go/team/
BLOG: http://www.dmxwishes.com/blog.html
Co-Author: Dreamweaver MX: Instant Troubleshooter (August, 2003)
Technical Editor: DMX 2004: The Complete Reference, DMX 2004: A Beginner's
Guide, Mastering Macromedia Contribute
Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP Web Development
"yts" <email***@***.com> wrote in message
news:dqol6d$48a$email***@***.com...
>I have an update page with a recordset to collect data from a table with 2
> fields (name, checked-in), the form has a text filed to hold the name
> vaule,
> listbox static with (Yes, No) vaules.
>
> I have binded the fields from the recordset with the form elements, but
> the
> listbox is not picking the right value that comes from the database,
> instead it
> is showing the intially selected value from the list.
>
> what should I do to correct this?
>
- 12
- Creating a Conditional Dynamic LinkI am using PHP and MySQL to create a Results page.
That results page needs to include a dynamic link that appear ONLY if there is
data in the field that contains the URL.
I am not a programmer, but here is my feeble attempt to write the code that
will achieve that result.
I know at least part of my problem relates to the PHP double quotes versus the
HTML double quotes, but I have fiddled with this for hours and gotten nowhere.
If anyone can point me in the right direction, I'd be greatful!
<?php if ($row_rsBrowseHangar['photo'] != NULL) {
echo "<a href='".$row_rsBrowseHangar['photo']; ?>" target="_blank">
<img src="images/photo_icon.gif" width="32" height="27" border="0">
- 13
- ASP Upload/Resize by DwzonePurchased the ASP Upload/Resize by Dwzone and it runs fine on my notebook
(unfortunatley gone in for repair) but it doesnt work on the pc. The "SAVE IN"
drop down menu doesnt display any database fields to save the path to the image
file. I was actually in contact by email with the author. He tried to help but
as he is Italian things got a little lost in translation and he gave up in the
end.
Any idea's out there.
- 14
- MySql - Combining tables questionI have 2 tables in MySql, one for Clients and one for Subscriptions. I want to
display in a table, every client and the number of subscriptions each has. I
can do this fine, however, I do have one snag. For the clients that have 0
subscriptions, they don't show up in the list at all, because they aren't in
the recordset based on my SQL. Here it is:
SELECT *
FROM ClientInfo, SubscriptionInfo
Where SubscriptionInfo.SubscriptionID = ClientInfo.SubscriptionID
ORDER BY CompanyName ASC
So the recordset only contains those clients who have a subscription. I,
however, want to display ALL clients and show a 0 in the subscription column
for those clients that have none.
Thanks in advance for your help.
- 15
- P7 MM2 Popups not staying open in IE7Hello All,
I've just created a menu using ProjectSeven Menu Magic 2. (I've only just
purchased CS3 and will play around with the Spry widgets!)
I wonder if anyone can help me get the MM2 popups to remain open long enough to
reach them in IE7? They seem fine in most other browsers.
Here is the webpage: http://www.cantatasingers.org/newsite/index.htm
I know, the design is goofy with the popups going over to the right and up,
but the designer is insistent...what to do?
I found that if I added padding to the left of the popup text, it worked in
the "about us" section. So, I repeated that for the others, but they won't
work for some reason.
Puzzled -- can you help?
Thank you so much!
Jaynehttp://www.cantatasingers.org/newsite/index.htm
|
|
|