How do I create link to custom URL from header image?
-
I know how to create links to every image on the site, except for the image on the header. How do I do this? I am using the Academia theme.
The blog I need help with is: (visible only to logged in users)
-
-
It’s sometimes possible to use CSS to take over a link from another area on the page. For example, this will take over the Twitter link and lay it over the top of the header image on the home page only. It uses a method called absolute positioning which you can find out more about at http://css-tricks.com/absolute-positioning-inside-relative-positioning/
.home #header { position: relative; } .home #social a[title="Twitter"] { display: block; background: none; width: 960px; height: 556px; position: absolute; left: 0; top: 157px; }
- The topic ‘How do I create link to custom URL from header image?’ is closed to new replies.