Jump to content

Jtech

Members
  • Posts

    46
  • Joined

  • Last visited

    Never

Everything posted by Jtech

  1. thnks but that didnt work ... i still cant find the extension i have tryed to redirected the extensions_dir in php.ini but that didnt do anything .. so am still stuck
  2. Hey everyone i am trying to install phpmyadmin on my apache server and everytime i open phpmyadmin it says """"""""""""""""" Cannot load mysql extension. Please check your PHP configuration. - Documentation """"""""""""""""" how could i solve this i have try everything i could
  3. Its pritty easy by using CSS just give the divs the same id="#" <style> .Heights { height:100%; } </style> hope that helps
  4. USE hover: instead it will give the same affect
  5. what browser are you useing ,cause the child selector/decendents... code your using only works in netscape like the child selectors
  6. if it was me i would do this with php , its more relyable ... and this it how u do it $HTTP_POST_FILES['upload_file']['type'] !="image/bmp" that will prevent the upload of bmp's
  7. How do i go about putting a /FCKeditor_2.3.2.zip  on to a website i have just downloaded it but ..its well confusing there is no help or instructions to tell you how to go about making all them files do what their a ment to do
  8. Nope .. dont do what i said .. i tryed your script out and it work just fine so ... so  ;)
  9. Rather specifie the width and height in the anchor ... specifie it in the script.
  10. K cool ... just to let u know what am on about heres an eg .. you know at the top of the page of php freaks where it has __________________________________ home|help|search|profie ect.... __________________________________ an that is maby on every page on this site like 1000s of pages . what will he do when ever he wants to change search to look.. its somthing like that which is my problem .. so do u have any better ideas
  11. well its more am in the making of trying somthing out .. i will have an external.js page which will write html in to what ever page has the <script src=""> tag// and i will get it to write in to a div which will get positioned by an other external.css.. its the only way i can think of changing an normal anchor called media to information in every page ...
  12. its ok now i worked somthing out
  13. it could be done all in css like make the background  u want with the slant .. and then add it to a div / span or table as a background  ... and then just use normal anchors ..and edit them with css to get the exact same roll over affect as u have .. tables would be best cause its less hassle cause they have the <td> to put the text over the image
  14. Opps delete the size:22pt in the <h4> attribute  that wasnt ament to be there it will overwrite the <h4> size
  15. Do this [code] span.picturebackground{ margin-top:0; width: 579px; height: 74px; background: url(4.gif) no-repeat; } h4{ size:22pt; float:center; } [/code] this is the body text now [code] <span class="picturebackground"> <h4> goo goo goooooo </h4> </span> I think that should work [/code]
  16. LOL you have your self a collections of pull down menu's there now .... we must of posted all at the same time :D
  17. oki well this is what i use to have a popdown menu it works well and it pulls the menu back up once tho mouse has left the links script [code]   if (document.getElementById) {     stdBrowser = true   }   else { stdBrowser = false }   function toggleMenu(currElem,nextPos) {     if (stdBrowser) {       menuObj = document.getElementById(currElem).style     }     else {     menuObj = eval("document." + currElem)     }    if (toggleMenu.arguments.length == 1) { if (parseInt(menuObj.top) == -5) {   nextPos = -90   }   else {     nextPos = -5 }   }     if (stdBrowser) {       menuObj.top = nextPos + "px"   }   else {     menuObj.top = nextPos   }   }  [/code] and this activates the pull down [code] <a href="#" id="tlmenu" class="hover1">Home..</a> [/code] and this is the <div> it looks for [code] /*this is the link to activate the pulldown*/ <div align="left" id="fileMenu" class="menu" onmouseover="toggleMenu('fileMenu',-5)" onmouseout="toggleMenu('fileMenu',-450)">     ###### </div> [/code] And this is the css to position it [code] /*this controls where the menu is positioned "like out of sight so u can see it"*/   .menu {                 position:absolute;                                top:-450px;     margin-left:-50;       } __________________________________ /*this is where you put ur links for pull down menu */ #fileMenu {               margin-left:0;   margin-top:299px;   width:23%;     } [/code] hope this helps
  18. Good advice but not what i was looking for .. fair enough that will let me beable to change the functions of the popup menu on every page but what if i wanted to change a anchor/ <a href> on every page .. heres an e.g __________________________________ link1 | link2 |link3 __________________________________ thats on 20 pages . so lets say i wanted to change link2 would i be able to make an external page to beable to change a normal anchor or will i just have to go through every page .... thnks for the replys anyhow
  19. Ok here's the deal... If i have a toolbar with a popdown menu in like 20 different  pages ... with links on it an after finishin putting it on every page i realize i want to change a link on the tool bar .. then i have to go through every page to change this link .. god thats tedious .. well any how my question is .. is it posible to have an external page with the toolbar an all the divs in it as well for the pop down menu ..and the positions as well .. so all i have to do is go in an change just that one page . an it would effect/change all them pages ...  ???
  20. Jtech

    <div> width?

    Well either position it left rather that float it left ----------------------- [code] position:absolute; margin-left:o; [/code] ----------------------- or  make it even like float left 30% and float right 70% or what eva why u want it . cause when rights = 100% it will push it below. -----------------------Your script edited [code] #page { width: 100%; padding: 10px } #left { float: left; width:30%; } #right{ float: right; width: 70% } [/code]
  21. The only way i can think of doing it is by positioning it there with css , [code] #1 first script img.squareAfloat{                             position:absolute;                             left:#;                             top:#;                                 } [/code] [code] #2 second script <img src="#" class="squareAfloat"/> [/code] just fill in the left,top  positioning to get it where you wanted
  22. its just the .gif can look distorted or have bits of color missing if the image is more than the .gif can handle..,, .gifs have a limit in quality . you could use .png .bmp .jpg as well its more a bit of info than telling u what to do so .. its up to u
  23. If its that important u could put it in a popup window
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.