I use Advanced Form Code in my webpage based on PHP.
But, MachForm use <div id="footer"> which is clash with my style code in that page also. Please tell me if I can remove or at least change to the another "id".
Started 2 years ago by boyconan90 | 3 posts |
I use Advanced Form Code in my webpage based on PHP.
But, MachForm use <div id="footer"> which is clash with my style code in that page also. Please tell me if I can remove or at least change to the another "id".
Hi,
You can search around line 2188 ~ 2189 in "includes/view-functions.php" file to change your the footer ID. In there you'll see these code :
<div id="footer">
Powered by <a href="http://www.appnitro.com">MachForm</a>
</div>
change it to something like this
<div id="footer_new">
Powered by <a href="http://www.appnitro.com">MachForm</a>
</div>
Also you need to change the "footer" id in CSS code, try to search these code and change the ID like the one in "view-functions.php" file.
#footer
{
width:640px;
clear:both;
color:#999999;
text-align:center;
width:640px;
padding-bottom: 15px;
font-size: 85%;
}
#footer a{
color:#999999;
text-decoration: none;
border-bottom: 1px dotted #999999;
}MachForm Support
awesome! thanks redityo, you're cool!
You must log in to post.