Solved: Latest Post Link problem
-
I just like to share how I fixed an annoying problem I and some others have had. Suddenly the latest post I did on my blog at https://www.frantzell.org/wp had any links in that post disabled. I.e. they did not respond to a click. To make them active all I had to do was post a new post, which in turn had its links disabled.
The problem was that I had the header coded like below in my CSS:
Removing the http call and replacing it with a local load of the background image solved the problem.
(Yes I know that the absolute position is evil, and I will fix that later ??
Regards,
Lennart
#header {
position: absolute;
top: 40px;
left: 0px;
background-image: url(“https://www.somesite.com/someimage.jpg”); <– Don’t use an http call, load locally
background-position: top right;
…. etc
}
Lennart
- The topic ‘Solved: Latest Post Link problem’ is closed to new replies.