I use sendgrid to blast emails out for different clients. I have one master account and then a few sub accounts. Each account has a subdomain and a unique ip address assigned to it.
Lately I have been having an issue where I link an image to Company A's website and it goes to it, but when you hover over it, Company B's website shows. Not sure why. Links are correct and I am not doing anything fancy.
Likely this is due to the setting of the title attribute in your HTML. I know most GUI editors (WYSIWYG) they will automatically create a title that is the URL inside the a tag.
If you are just changing the URL inside an a tag, then you likely still have the old URL inside of the title attribute of the a tag.
For example:
<img src="prettyimage.jpg" />
If you took that and just replaced URL 1 with URL2 in the href, the title would still display URL1 on hover.
Your options are:
If you design it via WYSIWYG editor:
See if your editor allows the option to edit title on a tag
Remove the the link completely and create a new link each time
If you hand code:
Edit the title each time you change the href
remove the title attribute completely from the a tags
Related
I am trying to send a newsletter containing multiple links and anchors to navigate through the page. Usually this works fine but the links no longer work now and open a new page instead (my mailbox).
I've noticed that the code of my links in the original page:
<a class="western" href="#Menu">Menu</a>
is automatically turned into the following in the email received :
<a class="western" target="_blank" rel="noreferrer noopener" href="#Menu">Menu</a>
Any idea what might be causing this and how to fix it?
Different e-mail clients support different HTML features.
Anchor links, for example, are not very well supported at all.
An e-mail client can display your HTML in any way it wants: filtered, modified or even not at all. It's out of your hands, in this case.
Since Apple iOS 13.1+ all webapps without the proper manifest and/or scope directive will be left with a popup IN the webapp when changing URL's. When the manifest is OK and holds the right scope (e.g. "/") all navigates like before. The problem is when my clients want to pay on my website and they are redirected to my payment provider. This URL change (also domain change) is again opened IN this popup instead in a flow from my shop.
Does anyone know how to solve this?
After long search i found the way of loading the manifest was the problem. We added this in correct (and checked) syntax in the head segment of the HTML. However we used the JSON type inclusion. We found that when using inline link tag, using rel="manifest", we should not put the JSON within the tags but in the href attribute like so: href="data:application/manifest+json,{}"/>. The same JSON output goes between the acculade brackets and then the scope and starturl are processed by the browsers.
We’re using Kentico 11.0.26 with MVC.
I need to add an external link under a page.
In content tree it should look something like this:
Page A
Page A1
Page A2
https://www.www.google.com/
The problem is that when I click the + button in Pages application, I only see page types, and there is no option to add a link.
Why not use value of page field to store the link and load the value inside of MVC app? Content tree alone does not have capability for this. All nodes have to be pages in one way or the other and plain old link to external domain can not be placed instead of page. To be honest I do not see benefit of having a link inside of content tree even for menu since you have to create menu using document path and not only its name anyway so accessing additional property should not be that much of a problem.
You could create a new content type to represent an external link and put that into your content tree. This would then also give you options to set additional properties of the link such as target and title rather than just a URL.
In my current site I have a link in the header section for skype, Gtalk, MSN chat, by clicking on the link the chat application get launched.
The problem is that, the link uses a href tag. and by doing this the SEO process is facing problem as there is some duplicate url have been created. In SEO process if different URLs have the same content the process not works.
Any suggestion from coming out from this problem.
One simple way to remedy this is add this adding a element with the attribute rel="canonical" to the section of the non-canonical version of the page.
More information please go to http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=139394
make them js url (with the js function in an external script)
My Joomla 1.5.18 site, I enabled login, when I click login the page I get sent to is NOT styled with CSS. If I login it redirects to the home page and it is not styled anymore either.
It looks like it is recursively appending stuff to the URL incorrectly.
http://www.myjoomlasite.org/index.php/index.php/login
if I click on home page or login links it keeps putting more and more index.php entries in the URL, and sometimes on the end. The following is what I get when I try and go to a JEvents menu item.
http://www.myjoomlasite.org/index.php/index.php/index.php/index.php/upcomingevents/month.calendar/2010/06/09/index.php
Anyone have any idea why this is happening? I don't know what to search for on Google apparently, and none of the Joomla! books I have address this.
I figured it out I had turned on Search Engine Friendly URLs in SEO Settings under Global Configuration. Turning this back off fixed the problem. Now I guess another question will be along the lines on how to get the Search Engine Friendly URL's to work again.
Make sure you link to stylesheets and images using a link that starts with a leading slash and therefore counts from the root.
It is the browser that evaluates the URL for those resources, based on the URL of the currently viewed HTML page. Never use relative links for these resources.