7 min past edit time
I just noticed that my 'submit' button is not where I believe it should be...accroding to where the 'back' button is at. I hope that's part of the same fix as the text box.
7 min past edit time
I just noticed that my 'submit' button is not where I believe it should be...accroding to where the 'back' button is at. I hope that's part of the same fix as the text box.
Yes I did. I even tried changing it back to returns.css....and that didn't change anything. I use HTMLKit to edit with. I used the search feature too look for 'returns'...and manually changed each one, so I could make sure of what i was changing inside of the files. Right now it is back to what I had it originally....return_authorization.css
Below is what the file contains:
and it is in includes/templates/funky/cssHTML Code:fieldset { float: left; clear: left; width: 100%; margin: 0 0 1.5em 0; padding: 0; } fieldset #personal, fieldset #order, fieldset #write{ padding:0; border:1px solid #000; border-width: 1px 0 0; } fieldset ol { padding: .5em .5em 0 .5em; list-style: none; } fieldset li { float: left; clear: left; width: 100%; padding-bottom: 1em; } legend { padding: 0.3em; font-size: 1.1em; color: #000; font-weight:bold; } select { margin: 0.1em; } textarea { margin: auto; padding:0.5em; display: inline; width: 40%; border:1px solid #B6ABD5; overflow:auto; } /*label.inputLabel { width: 11em; float: left; color: #000; }*/ label { float: left; width: 11.5em; margin-right: 1em; color: #000; font-weight: bold; } fieldset div { text-align:left; }
Well, I took out what I had put in, easy since there are no overwrites....and I uploaded it as original to read all 'returns' instead of what I changed it too.
The box looks odd now, as it only takes up 1/2 of the screen, and now the boxes around all the areas are off
The only changes I did in this upload was to change YOUR_TEMPLATE to funky and let her rip. This time if I use Firefox's web developer..I can see the returns.css....but don't know what to change in there for the borders and to make the box wider. I apologize, I'm still trying to wrap my head around a good portion of the coding concept....Also..the Send button still looks like it's in the wrong place on this screen.
Again, you can see it here.
Would my problem have been missing a 'returns' somewhere in my last pass through the files when I changed all occurances to 'return_authorization'?
The reason I did that change was, I'd like our returns policy to be on the 'returns' page....and the actual form to be on the 'return_authorization' page. Please let me know if that is not the correct way to accomplish what I'm after.
Last edited by FunkyPapa; 24 Jun 2010 at 12:00 AM. Reason: adding info
To make the text box wider:
open returns.css find the following declaration and change the highlighted portion as indicated:
textarea {
margin: auto;
padding:0.5em;
display: inline;
width: 90%;
border:1px solid #B6ABD5;
overflow:auto;
}
for the borders, find the following declaration and make what changes you need.
fieldset #personal, fieldset #order, fieldset #write{
padding:0;
border:1px solid #000;
border-width: 1px 0 0;
}
You may also want to edit the fieldset declaration in stylesheet.css
Awesome, showing me just what part to play with...
I changed
toHTML Code:fieldset { float: left; clear: left; width: 100%; margin: 0 0 1.5em 0; padding: 0; }
HTML Code:fieldset { float: left; clear: left; width: 97%; margin: 0 0 1.5em 0; padding: .5em; }
That fixed the line issue.
Did I do something wrong for trying to put in the page to be http:// funkymunkys.ca/index.php?main_page=return_authorization instead of it being http://funkymunkys.ca/index.php?main_page=returns...as in should I do something other than change each folder (I think there was one) from returns to return_authorization.....then go through each file name doing the same and finally go through each file with an editor to change all the 'returns' and the 'RETURNS'?
Last edited by FunkyPapa; 24 Jun 2010 at 12:54 AM. Reason: spelling
You will have to go through each and every file and and folder change everything to return_authorization
You will need to change includes/modules/pages/returns to return_authorization
You will need to change includes/extra_datafiles/returns_filenames.php to return_authorization_filenames.php
and then change the define statements.
You will need to change includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php to tpl_return_authorization_default.php
-----------------
includes/extra_datafiles/returns_filenames.php
includes/languages/english/extra_definitions/YOUR_TEMPLATE/returns_defines.php
includes/languages/english/YOUR_TEMPLATE/returns.php
includes/languages/english/html_includes/define_returns.php
includes/languages/english/html_includes/YOUR_TEMPLATE/define_returns.php
includes/modules/pages/returns
includes/templates/YOUR_TEMPLATE/templates/tpl_returns_default.php
includes/templates/YOUR_TEMPLATE/css/returns.css
Bookmarks