Jump to content

Nakor

Members
  • Posts

    127
  • Joined

  • Last visited

Posts posted by Nakor

  1. Much appreciated by me as well. I didn't think there was a way to display a font that the user didn't have installed and so for the longest time if I wanted a custom font I would just make an image.

  2. Maybe this will be good for you: http://www.apachefriends.org/en/xampp-windows.htmlI havent used it myself but its a single installer smile.gif
    I installed that yesterday actually and played around with it today. I have to say, it's pretty fantastic. Everything comes preconfigured, and it has a very nice control panel. It comes with just about everything you could imagine as well, just about anything you could ever want in order to set up a server on your computer.
  3. Bleh...IE...it has some benefits, but I think that it's downfalls outweigh. My personal browser recommendation is Mozilla Suite. It comes with "Web-browser, advanced e-mail and newsgroup client, IRC chat client, and HTML editing made simple -- all your Internet needs in one application."

  4. To the best of my knowledge, you can't. In my experience you cannot ever make changes to the source code of a file with the source viewer of firefox, as opposed to with Mozilla, where it comes with a built in, very functional editor.

  5. CNAME Record *.stinkybeats.com Yahoo! Hostname - -| --
    This line seems to me that it would be the one to affect www.stinkybeats.com being as that it has an asterisk prefix and then the .stinkybeats.com. Is this pointed to the same IP address as the A record for stinkybeats.com?
  6. Haha...that's why. You can't have anything sent to the browser before session_start(). You need to put this in a PHP block at the verryyy beginning of the file.Edit:That means you are trying to send more headers at those locations. You have to send all of the headers at the beginning of the file.

  7. No. Here is whyTo make fonts for IE you need Microsoft WEFT, which you can download for free here. This will create a font that you can use on the web with the .eot extension. However, this is only for IE, and will not produce the .pfr font that Netscape needs...I have no idea where to get that. Unless someone has another solution of course.

  8. I believe that the problem with this is that the people who are viewing your page do not have that font installed. That function is calling for a font on their computer which does not exist and so it reverts to default.Edit: I didn't see that you're using a url tag to link to it. Sorry

  9. It is possible, however it may be difficult.

    The margin and padding of the list are dependent on the number of list-items that you are using. In this case, we are using 10 items, so you can see that our bottom-margin is -10em, while our top-padding is 10em. You will see more comments within the code for explanation.
    ol#reverse {margin-bottom: -10em; /* number of items */padding-top: 10em; /* number of items */}ol#reverse li {position: relative;/* this creates the ability to keep the list items apart more */margin-bottom: -0.2em;/* fixes a bug in Firefox with non-collapsing margins */border-bottom: 1px solid transparent;}/* IE won’t do transparent borders */* html ol#reverse li { border-bottom-color: #FFF; }

    That Mozilla/Firefox non-collapsing margin is very confusing to me. If anyone would like to investigate it, I challenge you to do so. And since we are creating a transparent border, we need to degrade that for Internet Explorer by using the * html hack.Specific CSSNow, for each list-item, we need a different top relative position. I wrote a short PHP snippet to automate this action for me, but the math is actually pretty simple.Each item is relatively positioned by the following formula:

    -(((item_number – 1) *2) + ((item_number + 3)/10))

    From http://paularmstrongdesigns.com/weblog/reverse-ordered-lists
  10. Post your code. This typically means that you tried to do something else first, being as that cookies have to be sent first. You are probably getting this because the first line of your code is not session_start().

  11. This is an offline extension. When you go to a site that wants a password you can click on the icon which it adds to your toolbar. It asks for a master password, which you enter. It then takes the url of the site, and uses an algorithm to create a very secure password. Once you re-visit the site, it will pop up, asking you for your master password, and it will enter your secure password on the site. This is good because it creates a unique password for each page. It has the options to save the master password in memory, on disk, or to forget it. This is a very useful tool in my opinion, and I was also skeptical of it. It does not submit any information back to any site. If you turn off your internet connection it will still work.

  12. That might be an issue. I don't know much about OSCommerce, but I am going to assume that it is quite a bit like PHPbb. If this is the case you're going to have quite a bit of trouble editing it. They come with very complex PHP and it can become difficult to edit part of it unless you are either very good with PHP or just very good at using find. You most likely won't be able to straight up put links to javascript or css in the page, because of the way it combines pages.the url of my oscommerce template from store.bhuratea.com , i have mauch data feeeded, is it possible to change it's url without losing data. I do not understand what you are trying to say here, but you should not lose data by changing the variables in the file

  13. Post all of the code for config.php and show me the changes to made to the initial page as well. Also, I hear word that in the admin panel under tools there is something called banner manager that may allow you to change the link.

  14. In that situation you would want to do the second solution.

    define('NEWHTTP_LINK', 'www.bhuratea.com');$breadcrumb->add(HEADER_TITLE_TOP, NEWHTTP_LINK);

    Note: If you have some sort of a control panel for this, there may be an option in there to change that link. I do not know for sure though. Perhaps you should investigate if this does not work.

×
×
  • Create New...