免责声明:我没有编写主题代码。这是由另一位离开项目的开发人员做出的,我正在根据新要求进行调整。我没有Wordpress Theming的经验,但我能理解代码。
我在网站上进行设计,我想让我的徽标像浮动在Slider图层上方。我正在研究wordpress主题:
正如你可以看到Logo' Red Dela Cruz'在顶部占据一个单独的空间或div。我希望它在滑块内部并像一个图层一样漂浮在它上面,每当幻灯片更改图像时,徽标仍应存在。这是我的代码:
<div class="slider">
<img src="<?php echo $template_path; ?>images/redlogo_website.png" alt="" class="web-logo"/>
<div id="one-by-one-slider" class="one-by-one-slider">
<ul class="one-by-one-slider-large">
<?php
$args = array(
'post_type' => 'rdc_home',
);
query_posts( $args );
// The Loop
if ( have_posts() ) :
while (have_posts()) :
//the post for declaration
the_post();
?>
<li>
<img src="<?php echo wp_get_attachment_url( get_post_thumbnail_id($post->ID, 'thumbnail') ); ?>" alt="<?php the_title(); ?>"/>
<div class="slider-content text-center">
<div class="slider-heading shp-12 slides" data-animation="bounceInDown" data-duration=4 data-delay=1>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1><?php the_title(); ?></h1>
</div>
</div>
</div>
</div>
<div class="slider-heading shp-13 slides" data-animation="bounceInDown" data-duration=6 data-delay=2>
<div class=" container">
<div class="row">
<div class="col-md-12">
<h3><?php the_content(); ?></h3>
</div>
</div>
</div>
</div>
<!-- <div class="slider-heading shp-14 slides" data-animation="bounceInUp" data-duration=8 data-delay=4>
<div class=" container">
<div class="row">
<div class="col-md-12">
<a href="#contact" class="btn lm-gallery btn-remore">For Bookings</a>
</div>
</div>
</div>
</div> -->
</div>
</li>
<?php
endwhile;
endif;
wp_reset_query();
?>
</ul>
<div class="one-by-one-slider-nav">
<ul class="one-by-one-slider-thumbs">
<li class="one-by-one-slider-element"></li>
<?php
$args = array(
'post_type' => 'rdc_home',
);
query_posts( $args );
// The Loop
if ( have_posts() ) :
while (have_posts()) :
//the post for declaration
the_post();
?>
<li><a href="#"></a></li>
<?php
endwhile;
endif;
wp_reset_query();
?>
</ul>
</div><!-- one-by-one-slider-nav -->
</div><!-- one-by-one-slider -->
</div><!-- slider -->
徽标位于第二行,我没有在课堂上完成任何css
web-logo
答案 0 :(得分:0)
这应该有效:
.web-logo {
position:absolute;
}
如果徽标在&#34;后面&#34;滑块,你应该添加一个z-index,并使其更高,直到图像显示:
.web-logo {
position:absolute;
z-index:2;
}
答案 1 :(得分:0)
你可以尝试这个:
.web-logo {
position: absolute;
right: 10px;
top: 10px;
z-index:2;
}