| Vlad03,
Код HTML: <?php
/**
* Template Name: Fullwidth Page
*/
get_header(); ?> <div id="content" class="fullwidth"> <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class('page'); ?>>
<?php if(has_post_thumbnail()) {
echo '<a href="'; the_permalink(); echo '">';
echo '<figure class="featured-thumbnail"><span class="img-wrap">'; the_post_thumbnail(); echo '</span></figure>';
echo '</a>';
}
?> <div class="left_bar"> <div class="left_contact_1"> <p style="margin-top:36px;text-align: center;" class="rtecenter">Мы работаем ежедневно с 9.00 до 20.00 по адресу:<br>
г. Москва, метро Цветной бульвар<br> <span class="ya-phone">+7 (499) 499-12-55<br>+7(968) 892-84-20</span></p> </div> <p class="n_us_1">Наши услуги</p> <?php wp_nav_menu( array(
'container' => 'ul',
'menu_class' => 'f_menu',
'depth' => 0,
'theme_location' => 'footer_menu'
));
?>
<p class="f_z_1">Оформить заявку</p> <?php wp_nav_menu( array(
'container' => 'ul',
'menu_class' => 'z_menu',
'depth' => 0,
'theme_location' => 'f_z'
));
?>
<p class="z_z">Получение в день обращения</p> </div> <img style="margin-top: -64px;margin-bottom: 7px;" src="/wp-content/themes/theme1971/images/11.png" width="620px"> <?php the_content(); ?> <div class="pagination"> <?php wp_link_pages('before=<div class="pagination">&after=</div>'); ?> </div><!--.pagination--> </div><!--#post-# .post--> <?php endwhile; ?> </div><!--#content--> Код: .left_bar {
position: absolute;
margin-left: -320px;
}
.left_contact_1 {
position: relative;
right: -12px;
width: 251px;
height: 161px;
border: 2px solid #2E5D8B;
font-size: 15px;
line-height: 120%;
font-weight: bold;
color: #2E5D8B;
padding-left: 20px;
padding-right: 20px;
margin-bottom: 229px;
}
#content.fullwidth {
padding-top: 267px;
text-align: justify;
margin-left: 320px;
} Последний раз редактировалось maxg5; 24.10.2016 в 18:46. |