retotito 0 Report post Posted July 9, 2012 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 Thanks for your answers Reto Share this post Link to post Share on other sites
hockpunk426 0 Report post Posted July 9, 2012 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+ 1,327 Report post Posted July 10, 2012 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 0 Report post Posted July 27, 2012 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 389 Report post Posted July 27, 2012 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 103 Report post Posted July 27, 2012 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 0 Report post Posted February 13, 2013 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 andhttp://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 547 Report post Posted February 14, 2013 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