ddecort 0 Report post Posted July 11, 2012 I use the callout section to place a phone number up in the top right corner of my site. With the recent update to 2.2.2, now there is a blank button that I need to go away, as it's shifting over the callout element. Is there some easy css to hide this button or turn it off in the admin? Share this post Link to post Share on other sites
ddecort 0 Report post Posted July 11, 2012 i also need to remove the h2 tag from this text, as this is bad for our SEO (the phone number shouldn't be the h2 on every page). What is the easiest way to customize this section so that my changes aren't lost when I update the theme? Share this post Link to post Share on other sites
Danny+ 1,327 Report post Posted July 11, 2012 Hi, I think you probably best using a different section to display your contact information, such as the Content Box or Universal sidebar. You could also try using Hook. Please search our forums, before posting! Share this post Link to post Share on other sites
ddecort 0 Report post Posted July 11, 2012 Could you provide any direction on how I would use a hook for that? The general idea is I need a section that can sit inside the branding section and be fully editable without pushing other things around Share this post Link to post Share on other sites
Rob 547 Report post Posted July 11, 2012 You'll want to install the PageLines Customize plugin, edit the functions.php file there with this (edit as needed): [code]// ---> uncomment to load add_action('pagelines_inside_top_branding', 'global_phone_no'); // function name function global_phone_no(){ ?> your telephone number style.css, add some styling for the global_phone_no div in order to style the number, include a background, etc. The basics should be: [code]#branding .global_phone_no { float: right; z-index: 10; position: relative; }[/code] Former PageLines Moderator, Food Expert and Raconteur Share this post Link to post Share on other sites