Wallace Hill
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Page_Id Backgound ColorNo results
body {
background: #000;
}Worked, but not fullwidth
.l-main {
background: #000;
}Forum: Fixing WordPress
In reply to: Page_Id Backgound ColorAll three examples work, however not the entire page itself. If you scroll down the bottom portion is black. If you select <<Menu, you can see the entire background is black (default is offset white)
*NEW Page id* (4245 deleted)
https://whill.biz/?page_id=4367The template is set fullwidth
Page-fullwidth.php
<?php
/*
Template Name: Full width (without sidebar)
*/get_header(); ?>
<div class=”l-main spaces-main pt-perspective page”>
<div class=”page-title”>
<div class=”row”>
<div class=”large-8 columns”><h2><?php the_title(); ?> </h2> </div>
</div>
</div><main class=”row l-main” role=”main”>
<div class=”large-12 main columns” id=”content”>
<?php
wp_reset_query();
while(have_posts()):the_post(); ?>
<article>
<?php the_post_thumbnail( ‘blog-thumb’ ); ?>
<div class=”body field”>
<?php the_content() ?>
</div>
<?php
if(get_the_tag_list()) {?>
<div class=””>
<h2 class=”field-label”>Tags: </h2>
<?php echo get_the_tag_list(‘<ul class=”links”><li class=”taxonomy-term-reference-0″>’, ‘<li class=”taxonomy-term-reference-0″>’, ”); ?></div>
<?php } ?>
<?php if (comments_open()){
comments_template();
} ?>
</article>
<?php endwhile;?>
</div></main>
</div>
</div>
<?php get_footer(); ?>Forum: Fixing WordPress
In reply to: Page_Id Backgound ColorAlso if you choose menu the backgound is BLACK, but not the page
Forum: Fixing WordPress
In reply to: Page_Id Backgound ColorI placed into custom css and my theme custom css
body.page-id-4245 {
background-color: #000000 !important; /* Changing to the color value you want */
background-image: url(https://whill.biz/wp-content/uploads/2015/12/home-15.png) !important;
}Page flickers black background but goes back to white with a black footer?
Would really like to solve this issue I deactivated my content protector so that mouse right click can be used when viewing.
https://whill.biz/?page_id=4245