Is this possible? I need to write some numbers here: http://prntscr.com/an0pxi
Hi,
If you want to add content to the top bar, you need to edit the theme files as the re is no setting for this in the theme panel: http://screencast.com/t/HfoQiPaE2
Thank you!
Do you have a custom css for that? I don’t know what to write there, i’m afraid i could mess up the whole theme.
Hi,
In order to have it display properly, you can add the code in a header file. In my case I use header style 1 so I would add the code here: http://screencast.com/t/aRWvffCK6q
This is a simple div you can add content to:
<div class="mycustomdiv">Add your content here</div>
After you do that, it needs a bit of css for positioning. you can add this code in the css box of the theme panel:
.mycustomdiv{
margin-left: auto;
margin-right: auto;
display: table;
line-height: 28px;
}
This will be the result: http://screencast.com/t/xTKGkiEmw
Hope this helps.
Thank you!
Hello, i’m afraid i have an issue after the last update!
I’ve lost my config (the one you showed me here).
I tried to repeat it again and did not worked this time.
Now i’m using header style 10. (http://prntscr.com/ayitb6)
I’ve found the correct line, inserted that div and nothing happened.
Also i’ve added the custom css (http://prntscr.com/ayit64)
Help me please, how to solve it? I really need to display in the middle that message.
Thanks a lot.
Hi,
The solution should work as expected on header 10 as well. Please try to add a simple text and see if it renders on the front-end: http://screencast.com/t/f7MTQkY7
For this header the position will be different and the css as well as every header style has a different css. You will need to test a few positions of the code and find the place you want it to display.
Thank you!