Jump to content
Sign in to follow this  
retotito

content in the header next to logo

Recommended Posts

retotito

Hi How can i ad some text in the header aria, on the right side from the logo. I would like to place an adress and phone number over there. I made a picture, how it should look like logo-adresse.jpg Thanks for your answers Reto

Share this post


Link to post
Share on other sites
hockpunk426
The way I would do this is I would add it right into the header image I was using. So if you have Photoshop I would take that logo and increase the canvas size to the right of the logo and add the info you are looking for there. This is probably the most simple way to achieve what you are looking for.

Share this post


Link to post
Share on other sites
Danny
Hi Reto, I have visited your website and noticed that you're not using a PageLines product. Therefore, can you provide a link to your website using PageLines Framework please.

Please search our forums, before posting!

Share this post


Link to post
Share on other sites
retotito
Hy Danny So i got a link now: http://zipfel.freeiz.com/ I would like to know how to place a div in the header section. Regards Reto

Share this post


Link to post
Share on other sites
batman
I believe (not sure) you will have to do this manually, via a hook in functions.php. You can see this links: http://www.pagelines.com/wiki/How_to_Use_the_PageLines_Customize_Plugin and http://api.pagelines.com/hooks/ For example you can add at Pagelines Customize (plugin) [code]add_action('pagelines_before_branding_icons','add_tagline_to_branding'); function add_tagline_to_branding() { $tagline = 'Your text here.'; printf('
%s
', $tagline); }[/code] and then modify the position with CSS rules

Life is too short to remove USB safely ...

Share this post


Link to post
Share on other sites
catrina
To add to batman's response, here is further reference regarding CSS: http://www.pagelines.com/wiki/Custom_CSS

Please read the docs before posting. Please do not private message me unless I ask you to.

Designer | Catrina Dulay

Founder | Catrina and Mouse

Share this post


Link to post
Share on other sites
miratrix

I believe (not sure) you will have to do this manually, via a hook in functions.php.

You can see this links:
http://www.pagelines.com/wiki/How_to_Use_the_PageLines_Customize_Plugin
and
http://api.pagelines.com/hooks/

For example you can add at Pagelines Customize (plugin)

add_action('pagelines_before_branding_icons','add_tagline_to_branding');
	        function add_tagline_to_branding() {
		$tagline = 'Your text here.';
	        printf('<div id="branding_tagline">%s</div>', $tagline);
	}

and then modify the position with CSS rules

 

I added this in the Custom Code section and it had not impact. Do I need to create a new functions file or is there a specific one I add this to?

Share this post


Link to post
Share on other sites
Rob

We have a new section called Business Branding which has a simple form that allows you to add the phone and address info.  It then places the formatted info into the branding section as your example shows.


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  

×