> > I'm a novice who's learning more about FB every time I use it and I'm > never had any class in php and i'm ok with HTML. > > I need someone to tell me how to use firebug to tell me where a href > is living so I maybe able to remove or edit it.
I guess with "where a href is living" you mean the location of the server script, that generates the HTML output you see. If so, this is a pretty basic question of how server software works. I'll try to explain that, but I advise you to read more about this in some tutorials or ask your provider for more info. See the following example: If you go to http://getfirebug.com/, you'll see the homepage of the Firebug website. The file system path of the actual script, that creates that page, is *not* accessible through the browser or Firebug. Instead a server software like Apache <http://httpd.apache.org/> interprets the request to that URL, maps it to a file on the server's file system, reads it's contents and sends them to the browser. If there's a PHP or other server-side script behind the URL it first gets interpreted by an interpreter, which generates the output, that is sent to the browser. > I use joomla and have > paid components/modules/templates and some of these devs either don't > reply or just stop working on their projects. > > I think if you pay for something I should be able to have my own brand > or at leave remove theirs. some are easy to find but some aren't. > > right now I'm looking at 2 things. > > On my website it's at www.mywebsite.com/livezilla/chat.php > > so I would think this is in the chat.php but I can't locate it. If I access that page, it redirects me to http://mywebsite.1and1.com. So how should I be able to access this page? > what's listed below is all the info that firebug gives me. (Is there > anything > else I can use to help me narrow this down?) > > <document> > <html> > <head> > <body leftmargin="0" topmargin="0"> > <div id="lz_chat_param"> > <a class="lz_chat_main_link" target="_blank" href="http:// > www.livezilla.net/">Powered by LiveZilla Live Chat</a> > </div> > </body> > </html> > </document> > > > My 2nd issue is a dev. who is not working on his project, been waiting > weeks for him to reply to the forum > > www.mysite.com/component/option,com_jbudgetsmagic/Itemid,118/view,form/ > Accessing this page I just get a 404 (page not found) error. Are you sure the link is correct? > I'm trying to change this to US $ so I can see it as $100 and not 100$ > <div id="bdg_wrapper"> > <form id="budget" url="index.php?option=com_jbudgetsmagic&view=form" > name="budget" method="post"> > <h1>Basic Web Portal</h1> > <h2>Want to make a basic website? with the basic things we do not need > too much investment for a web portal. Check your budget.</h2> > <div id="bdg_content"> > <div id="bdg_message" style="background-color: rgb(221, 255, > 221);">System messages</div> > <table> > <tbody> > <tr class="head"> > <tr id="tr_1" class="element" onmouseout="des_el(this)" > onmouseover="sel_el(this)" style="color: rgb(0, 0, 0); background- > color: rgb(119, 119, 255);"> > <tr id="tr_4" class="element" onmouseout="des_el(this)" > onmouseover="sel_el(this)" style="color: rgb(0, 0, 0); background- > color: rgb(119, 119, 255);"> > <tr id="tr_2" class="element" onmouseout="des_el(this)" > onmouseover="sel_el(this)" style="color: rgb(0, 0, 0); background- > color: rgb(119, 119, 255);"> > <tr id="tr_11" class="element" onmouseout="des_el(this)" > onmouseover="sel_el(this)" style="color: rgb(0, 0, 0); background- > color: rgb(119, 119, 255);"> > <tr id="tr_10" class="element" onmouseout="des_el(this)" > onmouseover="sel_el(this)" style="color: rgb(0, 0, 0); background- > color: rgb(119, 119, 255);"> > <tr id="tr_12" class="element" onmouseout="des_el(this)" > onmouseover="sel_el(this)" style="color: rgb(0, 0, 0); background- > color: rgb(119, 119, 255);"> > <td id="td_12" width="1%" onclick="toggle(this)"> > <td class="title"> > <td id="cant_all_12" class="cant"> > <td> > <div id="price_12" class="">100.00$</div> > </td> > <td> > <input id="oprice_12" type="hidden" value="100.00" name="oprice_12"/> > <input id="type_12" type="hidden" value="normal" name="type_12"/> > <input id="min_12" type="hidden" value="0" name="min_12"/> > <input id="max_12" type="hidden" value="0" name="max_12"/> > <input id="group_12" type="hidden" value="" name="group_12"/> > </tr> > <tr id="tr_9" class="element" onmouseout="des_el(this)" > onmouseover="sel_el(this)" style="color: rgb(0, 0, 0); background- > color: rgb(119, 119, 255);"> > </tbody> > </table> > </div> > <div id="bdg_result"> > <div class="Clr"/> > <input id="form_id" type="hidden" value="1" name="form_id"/> > <input type="submit" value="Reset"/> > <br/> > <br/> > <div class="bdg_title">Send budget</div> > This is something Firebug has no influence on. Note, that Firebug is a client software, not a server software. So you need to change the files on the server. Normally you do this via an FTP account. What's the actual website you're working on? Greetings from Germany Sebastian -- You received this message because you are subscribed to the Google Groups "Firebug" group. To view this discussion on the web visit https://groups.google.com/d/msg/firebug/-/umN3388XTJsJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/firebug?hl=en.
