links

What do Google think about links without text, with only background?

Like this one: <a href="/" id="logo"></a> Or should I do like this instead and change the font-size to zero: <a href="/" id="logo">Home</a> Edit: No one here seems to understand my question. So I'll post some CSS too: #logo { display: block; width: 326px; height: 69px; background-image: url(images/logo.gif); ba...

Regular expression to grab link between square brackets

I need to lift the YouTube link from some text which looks like this: [youtube=http://www.youtube.com/v/qpbAe2HyzqA&hl=en&fs=1&] Can anyone help? ...

Open a Link with selecting a UITableViewCell

Hi, what I'm trying to do is to have 1. a speakable text withtin the cell of a tableview (let's say "Google") 2. the ability that the user is able to select this row ("Google") and safari starts and opens the url http://www.google.de 3. if the user adds a new entry to the tableview, he should be able to enter the speakable text and the...

[php] underlinks also

Hi! I'm not very good at explaining in english but i'll give it a go. Hope you understand. In php i have this script that fetches an URL and displays the content. So far so good. The content is shown like this: eg. site.php?url=http://google.com But WHEN i click on something in the page, eg. google.com, then my site disappears and th...

magento - change the colour of the footer links text

Hello there, hoping somebody might be able to help me. I am currently using a hellothemes theme. I would like to change the colour of the footer links text. Any ideas on how to? Also can anyone explain the differences between the CSS's on Boxes.css: Mage_CSS_B Common Elements Mage_CSS_E Shop Pages Mage_CSS_F Overrides etc... Regard...

Globalization and links in sentences

I am working on globalizing/localizing an asp.net application with C# as the backend. We are in the process of extracting strings to a resource file, and have run into a problem. We are trying to keep sentences together so that they are translatable, but this is not possible with links. For Example: <%= Strings.BeginningOfSentence %>...

Find spaces in anchor links

We've got a large amount of static that HTML has links like e.g. <a href="link.html#glossary">Link</a> However some of them contain spaces in the anchor e.g. <a href="link.html#this is the glossary">Link</a> Any ideas on what kind of regular expression I'd need to use to find the Spaces after the # and replace them with a - or _ ...

Links not appearing in IE or Opera.

I have tested my website on Safari and Firefox on both PC and Mac and the links work fine. However, my links show up as just plain text on Internet Explorer and Opera. What am I doing wrong? This is my header where my links are contained. It is on several of my pages. The original website is t h e p i c k l e . t k I spaced inbetween all...

sIFR 3 and Links: can't get them to work together

I am trying to use font replacement for my links, but have no idea how to do it. My test site is http://www.internetlinked.com/test/ how do I setup sifr-config.js so that the links on the left have their fonts replaced. I go it to work using sIFR.replace(decade, { selector: 'li', css: '.sIFR-root { background-color: #1A171B; }' });...

lavalamp jquery not linking through

I'm struggling getting my lavalamp to work on a site i'm redesigning. the jquery and links were taken from the previous site but they're not working when you click on them. note all pages aren't finished yet, about us page is live on the site to check www.alwaystwisted.com/sandbox/stagecraft/index.html any ideas? I'm sure it's someth...

Best approach for adding non-web links to UITextView

I am creating a dictionary-style app that presents a tableview full of words, and when a word is selected, a UITextView is displayed that shows the definition of the word. What I would like to do is add a line that says "See also: synonym1, synonym2" where synonym1 and synonym2 are links that will take the user to the definition for the...

PHP Link problem

Hello, I have a head file which I am using for a few different pages. The problem is when I go into a folder, the links in the head file point to say index.php instead of ../index.php Is there any function to fix this or any work arounds that I'm missing?. Thanks! ~ Kyle G ...

tab links not workinh in internet explorer but working fine in firefox.

i coded a header file which includes some of tabs.this header file is include in jsps of website.in two jsp pages tabs are not working in internet explore but in other jsps its working fine.in firefox each tabs are working fine in each jsps. below is code section of jsp in which header is included. <!-- Header Start --> <!-- sta...

How can I make an img and text link both link to the same place and both become active on hover independent of which one i am hovering over?

I would like to be able to have hovering over the image invoke the hover property on the text link too that is next to it. I have a image preview of a video and the video name written next to it as text string. I'd like to make it so i can hover on the picture and make the text still change color like a hover effect without having to ...

plogger navi links

Is it possible to add plogger navi links over the photos? Like: Category -> SubCategory -> SubCategory? ...

Is there a way of making normal links automatically load through ajax, rather than normally?

I haven't explained this well. But what i mean is, if I have an ajax script that loads the content of a page in a DIV element, through the function 'loadpage('whatever.php');, instead of going around manually doing this to all links, is there a way of having a script that automatically makes all regular links load through that ajax func...

Ajax Links and jquery

Going with the just jquery it joke i was wondering in my website i have a link that says "Add". After clicking it the page refreshes and it says remove. I figure this would be better with ajax and not require the page to reload. How do i do this with jquery (should i do it in jquery?) and how do i know when the server receives the add so...

sIFR <object> hides the link in IE --> not clickable

I tried lots of tricks but I can't manage to have them work ! In fact if I click just on the edges of the flash (in the margin of my replaced span), the links actually work. And when my mouse goes over the sIFR replaced, the good url shows in the status bar... It looks like the object is hiding the link... Note : I cannot remove wmod...

How can I modify this code to just affect normal links? (basic jQuery)

$(document).ready(function(){ $("a").click(function() { $("#content").load($(this).attr("href")); window.location.hash = $(this).attr("href"); return false; }); }); So I use this code to make all links load in the div (content). But I want all links that have a target of _blank (new page), to open up i...

Preg_match_all <a href

Hello i want to extract links <a href="/portal/clients/show/entityId/2121" > and i want a regex which givs me /portal/clients/show/entityId/2121 the number at last 2121 is in other links different any idea? ...