Post by Shaliza on Feb 15, 2020 21:17:54 GMT -8
Hello again...
I have yet another question which has to do with adding a background image to the footer/copyright notice since some of my themes have this.
This is the coding in my Style Sheet:
I already have the footer image in my Visual Editor, so the above coding works great for the boxed footer with a background image.
However, I can't seem to get the boxed copyright notice with the same background image as the footer with the above coding. I also had to remove the copyright background image from the Forum Wrapper Layout Template since it stretched the whole length of the forum and wouldn't allow me to add a box. So this is what I have in my Forum Wrapper now...
Thanks so much for the help as always. I really appreciate it.
I have yet another question which has to do with adding a background image to the footer/copyright notice since some of my themes have this.
This is the coding in my Style Sheet:
/* Move Footer */
.c-footer {
background-color: rgba(250, 250, 250, 0.5);
border: 1px solid #000000;
width: 55%;
margin-top: 20px;
margin-left: auto;
margin-right: auto;
}
#copyright {
background-image: scroll url('https://village.photos/images/user/8b71678b-f386-41ca-b2a6-41bd3ed56de3/1cc73ae6-7ac0-435d-9996-2a8f4f36c06a.jpg');
border: 1px solid #d04970;
width: 60%;
margin-left: auto;
margin-right: auto;
margin-top: 20px;
color: #d04970;
font-size: 15pt;
font-style: bold;
text-align: center;
}
I already have the footer image in my Visual Editor, so the above coding works great for the boxed footer with a background image.
However, I can't seem to get the boxed copyright notice with the same background image as the footer with the above coding. I also had to remove the copyright background image from the Forum Wrapper Layout Template since it stretched the whole length of the forum and wouldn't allow me to add a box. So this is what I have in my Forum Wrapper now...
<!DOCTYPE HTML>
$[tag.html.open]
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title>$[title] | $[forum.name]</title>
$[head]
</head>
<body>
{if $[maintenance_mode]}
<div class="maintenance-header">
{if $[can.disable_maintenance]}<p>Finished with maintenance? $[disable_maintenance_link].</p>{/if}
</div>
{/if}
<div id="wrapper">
<header>
<div id="banner-container" role="banner">
<h2 id="banner">
$[forum.title]
</h2>
</div>
<a id="navigation-skip" href="#content" accesskey="s" class="aria-hidden" title="Skip Navigation">Skip Navigation</a>
<a href="#" accesskey="d" title="Open Menu" onclick="proboards.hotkeys.activate(Keys.d); return false;"></a>
<div id="navigation-menu" class="ui-helper-clearfix">
<ul role="navigation">
{foreach $[navigation.menu]}
<li>
<a{if $[navigation.menu.active]} class="state-active"{/if} href="$[navigation.menu.href]"{if $[navigation.menu.accesskey]} accesskey="$[navigation.menu.accesskey]"{/if}>
$[navigation.menu.name]
{if $[navigation.menu.notification.total]}
<div class="tip-holder" onclick="window.location='$[navigation.menu.notification.href]'; return false;">
<div class="tip-number">$[navigation.menu.notification.total]</div>
<span class="tip"></span>
</div>
{/if}
</a>
</li>
{/foreach}
</ul>
<p id="welcome">
{if !$[current_user.is_member]}
Welcome Guest.
{if $[login_link] || $[register_link]}
Please $[login_link]{if $[login_link] && $[register_link]} or {/if}$[register_link].
{/if}
{else}
<span><span class="cust_greet"></span> $[current_user.name].</span> $[logout_link]
{/if}
</p>
</div>
</header>
$[participated_threads_link]
{if $[navigation.tree]}
<div id="navigation-tree">
$[navigation.tree]
</div>
{/if}
$[header]
<div id="content" role="main">
{if $[notice]}
<div class="container">
<div class="title-bar"><h2>$[notice.title]</h2></div>
<div class="content pad-all cap-bottom">
$[notice.message]
</div>
</div>
{/if}
$[content]
$[shoutbox]
</div>
$[footer]
<div class="center">
<div style="background-image:">
<div class="copyright">
<center>
<p class="bold">
<font size="4" color="514628">©2014 - 2020
<br />Theme created by Shaliza.<br />
All Kinds of Everything<br>All Rights Reserved.
</font>
</p>
</center>
</div>
{if $[is_mobile_browser]}<br /><p class="center">Switch to the $[mobile_switch_link].</p>{/if}
</div>
</div>
</div>
</body>
</html>
Thanks so much for the help as always. I really appreciate it.