2014-10-27 69 views
1

我在wordpress主题的标题中有一个图像链接地图,我需要在750px下进行响应。我已经能够使链接显示在标题中,但他们不活跃,我不知道为什么。现在我只是想让“p1”链接起作用。在wordpress中创建响应式图像链接图

网站是在这里:indie-scene.com

这里是我的PHP:

<div class="header header-default"> 
     <img src="<?php echo $ti_option['site_logo']['url']; ?>" alt="<?php bloginfo('name'); ?> - <?php bloginfo('description'); ?>" width="<?php echo $ti_option['site_logo']['width']; ?>" height="<?php echo $ti_option['site_logo']['height']; ?>" /> 
     <div class="hotspots"> 
      <a href="http://www.nearlynewlywed.com" class="p1"></a> 
     <div title="home"> 
      <a href="http://www.indie-scene.com" class="p2"></a> 
     </div> 
     <div title="sell"> 
      <a href="http://www.nearlynewlywed.com/a/sell" class="p3"></a> 
     </div> 
     </div> 
    </a><!-- Logo --> 

,并在我的CSS媒体查询

@media only screen and (max-width: 750px) { 
.header { 
    width:100%; 
} 
.header img { 
    content: url(http://indie-scene.com/wp-content/uploads/2014/10/logo_no_banner.png); 
max-width: 276px; 
} 
.header {width:100%; position:relative; } 
.header .hotspots {width:100%; height:100%; position:absolute; left:0; top:0; visibility:hidden;} 
.header a {display:block; position:absolute; background:#000; z-index:100; opacity:0.2; filter: alpha(opacity=20); border:1px solid transparent; } 
.header a.p1 {left:50%; top:5%; width:50%; height:50%;} 

回答

1

的链接不会出现,因为你已将您的hotspots div的visibility设置为hidden,宽度为750px此处:

.header .hotspots {width:100%; height:100%; position:absolute; left:0; top:0; } 

您需要从上面的CSS中删除visibility:hidden;或将其更改为visibility: visible;

enter image description here

在上图中,我设置了hotspots div的visibilityvisible使用的开发工具,你可以看到你的.p1链接现已出现。