Current status of the Ning Platform is always available on the Ning Status Blog.

NC for Hire

Around this time last year I posted a tip for how to add text effects to your imported Google Fonts and this seemed to be helpful for other NCs looking to add a little flare to their fonts.  But what about those who just want to style their headers and titles but are not importing google fonts?  That's what this tip is for.  Furthermore, this is mainly geared towards NC's who have sites with darker backgrounds, but will also work on lighter backgrounds as well.  This will be a simple tip for those who are even slightly familiar with CSS and how it works on Ning networks.

First I will show you a little table I whipped up which on the left shows the HTML for actually placing the text in the page and on the right you see the CSS which styles the text, giving it the effect we are going for.  This method uses no images or javascript.  There are a couple of effects in this list which use SVG and may require a bit more understanding (great article here) but if this is confusing to you don't let it deter you from trying out the others based purely on CSS.  I have a codepen set up over here to use as a playground.

HTML Corresponding CSS
<h2 class="text text_anaglyphic">anaglyphic</h2>
<h2 class="text text_embedded">embedded</h2>
<h2 class="text text_embossed">embossed</h2>
<h2 class="text text_neon">neon</h2>
<h2 class="text text_fire">fire</h2>
<h2 class="text text_retro">retro</h2>

<h2 class="text text_blurred">
<svg width="100%">
<text class="text_blurred_svg" font-size="60" font-family="Roboto, "Gill Sans", "Gill Sans MT", Calibri, sans-serif" x="300" y="80" text-anchor="left">Blurred</text>
<filter id="textFilter">
<feGaussianBlur stdDeviation="5" />
</filter>
</svg>
</h2>

<h2 class="text text_gradient">
<svg width="100%">
<defs>
<linearGradient id="grad1" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#5e5e5e;stop-opacity:1" />
<stop offset="100%" style="stop-color:#a3a3a3;stop-opacity:1" />
</linearGradient>
</defs>
<text fill="url(#grad1)" font-size="60" font-family="Roboto, "Gill Sans", "Gill Sans MT", Calibri, sans-serif" x="300" y="100" text-anchor="left">Gradient</text>
</svg>
</h2>

<h2 class="text text_golden">
<svg width="100%">
<defs>
<linearGradient id="grad2" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:#f9d400;stop-opacity:1" />
<stop offset="48%" style="stop-color:#f89c00;stop-opacity:1" />
<stop offset="53%" style="stop-color:#f89c00;stop-opacity:1" />
<stop offset="100%" style="stop-color:#f9d400;stop-opacity:1" />
</linearGradient>
</defs>
<text fill="url(#grad2)" font-size="60" font-family="Roboto, "Gill Sans", "Gill Sans MT", Calibri, sans-serif" x="300" y="100" text-anchor="left">Golden</text>
</svg>
</h2>

<div class="container">
<h2 class="text text_stitched">stitched</h2>

</div>
<h2 class="text text_3d">3-d effect</h2>
.text {
font-size: 60px;
margin: 40px 300px 0;
text-transform: uppercase;
}

.text_anaglyphic {
color: #f9689a;
text-shadow: -4px -4px 0 #77caff;
}

.text_embedded {
color: #111111;
text-shadow: -1px 1px 1px #3e3e3e;
}

.text_embossed {
color: #603624;
text-shadow: -1px -1px 0 #5d5d5d;
}

.text_neon {
color: #f5f5f5;
text-shadow: 0 0 3px #f5f5f5,
0 0 15px #7deaec,
0 0 30px #7deaec;
}

.text_fire {
color: #f5f5f5;
text-shadow: 0 -1px 1px #f4eba1,
0 -2px 2px #f0df72,
0 -3px 3px #e2be3a,
0 -10px 20px #b57400,
0 -20px 30px #7d4217;
}

.text_retro {
color: #7d4217;
text-shadow: 3px 2px 0 #333333,
6px 4px 0 #999999;
}

.text_blurred {
height: 80px;
margin: 40px auto;
text-align: center;
}

.text_blurred_svg {
fill: #a7a7a7;
filter:url(#textFilter);
}

.text_gradient {
height: 80px;
margin: 40px auto;
text-align: center;
}

.text_golden {
height: 100px;
margin: 40px auto;
text-align: center;
}

.container {
display: inline-block;
padding: 13px;
margin: 0 0 0 300px;
background: #555555;
-webkit-box-shadow: 1px 1px #111111;
-moz-box-shadow: 1px 1px 3px #111111;
box-shadow: 1px 1px 3px #111111;
text-align: center;
}

.text_stitched {
display: inline-block;
padding: 25px 37px;
border: 3px dashed #777777;
margin: 0;
text-align: center;
color: #dddddd;
background: #555555;
}

.text_3d {
color: #b50e00;
text-shadow: 1px 0 0 #510300,
2px 0 0 #510300,
3px 0 0 #510300,
4px 1px 0 #510300,
5px 2px 0 #510300,
6px 3px 0 #510300,
8px 4px 0 #510300,
9px 5px 0 #510300,
10px 6px 0 #510300;
}

Now For Applying These Effects to Headers and Titles Within your Ning Network

If you look at this page from Ning indicating the CSS selectors to use when specifying styles, you will see that, for example, if you grab the CSS above for the Fire Text:

.text_fire {
color: #f5f5f5;
text-shadow: 0 -1px 1px #f4eba1,
0 -2px 2px #f0df72,
0 -3px 3px #e2be3a,
0 -10px 20px #b57400,
0 -20px 30px #7d4217;
}

and add  the selector for Page Title which is h2.module-name

you'll have this (note the comma between selectors):

h2.module-name, .text_fire {
color: #f5f5f5;
text-shadow: 0 -1px 1px #f4eba1,
0 -2px 2px #f0df72,
0 -3px 3px #e2be3a,
0 -10px 20px #b57400,
0 -20px 30px #7d4217;
}

Add this to your advanced CSS in Design Studio and all of your page titles will be set on fire!

Feel free to ask any questions you might have and as always you can reach out to me if you need help with design or development on your Ning network.

You need to be a member of Ning Creators Social Network to add comments!

Join Ning Creators Social Network

Votes: 0
Email me when people reply –

Replies

This reply was deleted.
 

Some interesting articles related to community management, digital marketing etc. could be found in our digest. Don't hesitate to leave a feedback so we would know that we should continue :-)

Latest Activity

Scott Bishop posted a discussion
OMG! AI does it all. Anything you want to light up your Ning site, just ask Google AI. That's what…
Feb 5
Scott Bishop replied to Alex - Rosas † Negras's discussion
HTML Browser Popup Window Generator,possible with a click to have the window open for ning or other pages, this is my example
"Where at in a 3.0 website do you paste the code to? "
Feb 3
Scott Bishop replied to George H. Compton IV's discussion
(Ning 2 and 3) welcome / sign-in and sign-up pop-up module. Updated Aug 24, 2017
"Hi George, I'm not sure if this tip has been outdated or for some reason it's not working on my…"
Feb 3
Eva updated their profile
Jan 28
Scott Bishop replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"https://community.surfoutlook.com/
However, it's been solved. Ning helped me out with it. "
Jan 27
Alex - Rosas † Negras replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"I don't remember your site, I'll check for you, can I have the link?"
Jan 26
Scott Bishop replied to ⚡JFarrow⌁'s discussion
🖼️ Improve Accessibility & SEO on Your Ning Photo Pages by Automatically Adding ALT Text from Photo Titles
"On your step 3 where you say "Paste in the script below", I'm not finding that. Did you forget to…"
Jan 25
Scott Bishop replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"I think that setting was switched over to Admin as a default when I converted from 2.0 to 3.0…"
Jan 25
Alex - Rosas † Negras replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"settings members must post, if you put ADMIN it is FORBIDDEN TO PEOPLE"
Jan 25
Scott Bishop replied to Scott Bishop's discussion
Please Help! Members Have No Way of Posting Anything
"I got an answer back from Ning Support within an day. It was a setting that somehow slipped out of…"
Jan 22
Scott Bishop posted a discussion
I just realized that my members can no longer post pictures, videos, blogs, events, or anything…
Jan 21
Eva updated their profile
Jan 18
More…

Meanwhile, you can check our social media channels