create180design 1 Report post Posted June 6, 2011 Hi there! I am almost done with my site, but have two issues that I need to resolve: website: www.aplestimating.com 1) There is a white horizontal line in the upper right area of the screen??¦i think it is related to the universal sidebar I added to the header?? It was working fine until I inserted the Transposh translator. How can I remove this line? 2) My footer is consistent on all my pages EXCEPT one - the "Send Us A job" Page. That page shows a white border on the bottom, compared to the others showing the background. I need to make all the pages show the background and want to be able to add my "Designed by" in there as well. Share this post Link to post Share on other sites
Kate 3 Report post Posted June 6, 2011 Hi Helize, 1) In your custom CSS, please add: #sidebar_universal #list_sidebar_universal{width:150px;} 2) Did you modify footer.php? Share this post Link to post Share on other sites
create180design 1 Report post Posted June 6, 2011 1) Worked like a charm- Thank you! 2) I added in my CSS the following code to make the footer green: #footer .texture { background-color:#6c9b57; } Before I knew how to remove the leaf logo, I deleted a portion of the footer out. After learning to use the little section of code, I copied the footer.php code from another Pagelines website and pasted it in: <?php /* FOOTER This file controls the ending HTML </body></html> and common graphical elements in your site footer. You can control what shows up where using WordPress and PageLines PHP conditionals This theme copyright © 2008-2010 PageLines */ // Deal with BuddyPress and BuddyPress Template Pack if(pagelines_is_buddypress_page()):?> </div> </div> <?php endif; ?> </div> <!-- END #dynamic-content --> <div id="morefoot_area"><?php pagelines_template_area('pagelines_morefoot', 'morefoot'); // Hook ?></div> <div class="clear"></div> </div> <!-- END #page-main from header --> </div> <!-- END #page-canvas from header --> </div> <!-- END #page from header --> <div id="footer"> <div class="outline fix"><?php pagelines_template_area('pagelines_footer', 'footer'); // Hook pagelines_register_hook('pagelines_after_footer'); // Hook pagelines_cred(); ?></div> </div> </div> <?php print_pagelines_option('footerscripts'); // Load footer scripts option wp_footer(); // Hook (WordPress) ?> </body> </html> Maybe I omitted something?? Share this post Link to post Share on other sites
cmunns 16 Report post Posted June 6, 2011 You should really re-download the theme and use the footer.php file from that and not from another site online. Share this post Link to post Share on other sites