Announcement Bar as header SquareSpace - header

I want to use Square space's announcement bar as the header for my site. I have seen others doing this and using the div "sqs-announcement-bar" but have not been able to use code injection to make it work. Anyone know how to do this?

Hello this is not done via code injection. Under the Marketing menu > Engagement > Announcement bar is where you will find the option to activate this feature. No code is needed. This can be modified with CSS.

Related

How to disable or hide WhatsApp Web Sidebar?

I have tried the solution provided [here][1]
[1]: https://webapps.stackexchange.com/questions/119105/how-can-i-toggle-or-shrink-the-whatsapp-web-sidebar which doesn't seem to work now. Could be due to the changes over the years.
Is there way to hide or close the sidebar that shows the contacts and conversations? Just surprised that WhatsApp doesn't offer this option directly.
If you want to disable/hide the sidebar, open Inspect tools and search id="side" and select its parent div and on elements.style write the following css:
display : none
If you want to unhide the sidebar just remove css or deselect it.

how to add navigation bar at top of the website in shopify?

I’m looking for answers regarding Shopify.how to add navigation bar at top of the website in shopify?? for example: i want to add phone no and email id at top of the website in shopify please help me how to do this ?
Thank in advance !!
The answer is going to be highly dependent on your theme - some templates have a space for a message at the top which can be set via the admin, and some templates don't.
For example, the Minimal theme has a setting in Customize Theme->Header called "Top bar text". Debut has an "Announcement Text" setting in the same place.
If your theme does not have such as facility, and you are willing to modify code, go to Customize Theme->More Actions->Edit Code, then go to Sections->header.liquid, and change that.

Can I remove the title/border of an app in Rally?

I recently found that one of the custom apps I can add to my Rally homepage is a custom HTML app.
This will be really useful to me, since I can use some HTML (Bootstrap) headers to separate apps on my page and make it more organized.
I got the custom HTML to show properly (and I currently have a header/divider) however, it is showing the grey title bar just like any other app would.
Is it possible to hide this when using the HTML app, so just the HTML output shows?
(If anyone is familiar with apps in Sharepoint, it's called a "Chrome" and you can hide the chrome/title so just the content shows.
I don't think there's any built-in chrome to the apps themselves... Can you show a screenshot? Are you following the general formula to embedding apps presented in this guide?
https://help.rallydev.com/apps/2.1/doc/#!/guide/embedding_apps

Hubspot to use CTA button in Custom HTML module?

My google search show a way to insert CTA button into a web page but not showing how to insert into a Custom HTML module.
If you know how to, please share.
Well, go forward to the chapters on the right of the OP's guide will lead us to full detail guide on this here.

SharePoint 2010 Site Customization: Removed breadcrumb and now receiving errors

I removed the following fields from the "s4-titletext" cell using the Manage Content Regions in SPD:
PlaceHolderSiteName
PlaceHolderPageTitleInTitleArea
PlaceHolderPageDescription
And I added "SharePoint:SPLinkButton... Visible="False"
I have published this template and have set it as the Default Master. It displays fine but when I add a web part (not in SPD), I get the error "You must specify a value for this required field" and it will not let me add/remove the web part or change any list. What did I do wrong in my customization? I followed the instructions on this post. I used Option 2 to hide the words. The reason I removed the fields is because I want to stretch our banner across the whole page and I didn't want to leave the space where the bread crumb would have been. My "s4-titletext" area looks like the pictures on the top of the page, only banner is stretched all across the top of page. I can not add a link to my page due to it being on a private server. I have asked other SharePoint experts and they are stumped as well. Thank you for your help on this.
Instead of setting visible="false", getting hiding the control using a CSS class. Set the control's class to something like 'hiddenClass' and then define your class style.
.hiddenClass{display: none;}
Customizing SharePoint masterpages is a pain since they're so sensitive. You have to use this method when hiding a lot of the out of the box controls.
Some placeholders need to be on the master page, if you remove it it will cause errors in some of the scrips.
What I recommend to you is create a hidden div and inside of it put all the placeholder you want to hide, like the example bellow.
<div style="display:none">
<asp:ContentPlaceHolder ID="TitleZone" runat="server"></asp:ContentPlaceHolder>
<div>