Jump to content
Sign in to follow this  
ddecort

Need to hide button in Callout section

Recommended Posts

ddecort

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
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
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
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
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

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×