Skip to main content

Tagged With "2.0"

Tagged With "2.0"

  • Tips
    ❤️
    Flash works in hoopla, but of course, not on iPads and Android (latest versions). We had a really good flash logo on our homepage vAnd our recent site stats told us 18% of our users were using those OS', and thus, seeing a big blank space where our...
  • Tips
    The theme editor allows you to customize the overall background color for your widgets. Here's a typical widget styled using the the theme editor only: Change Title Font Properties If you just want to change the widget title's font size, color, or weight (how bold it is), apply CSS like this (setting your own specific colors, sizes, weights): header.widget-header h3 { color: #4d709f; font-weight:400; font-size:1.1rem; } Note that you should be using REM units for font size, not pixels. That...
  • Tips
    ❤️
    By default, the main navigation menu is displayed ABOVE your site header. It is also full width by default, like so: Below, we will offer some tips for changing the appearance and positioning of your main nav menu. Left Align The Menu To position your menu text so it is aligned left instead, add this CSS: nav#top_nav_bar ul.right { float:left !important; } nav#top_nav_bar ul.right > li > ul.dropdown { left: 0; right: auto; } Your menu will then look like this: Center Align The Menu To...
  • Tips
    ❤️
    Just as you can use Font Awesome font icons for premium member badges, you can also use them for any permission circle badges, or activity level badges (instead of titles). For purposes of this tip, we will be creating a badge for Activity Level Titles, which can be set via Recipes. First, select the font icon you want from the FontAwesome list of icons, here . Note that while the Solid and Brands icons are free to use, Regular, Light, and Duotone require that you purchase a Pro license.
  • Tips
    This is similar to the tip about adding a custom icon to Premium Member badges . For this tip, we'll show you how to display a custom icon next to all Member Titles. Note that the same icon will be displayed for all titles in the example, since there is currently no way to differentiate member titles from a CSS standpoint. First, let's see what our sample Member Title of "Dude" looks like without any styling: 1. First, let's focus on simply adding an icon. You can inject a Font Awesome font...
  • Tips
    ❤️
    Here's how to center the main navigation menu: nav.top-bar { text-align: center; } nav#top_nav_bar ul.right, section.top-bar-section > ul.right { float: none !important; display: inline-block; } .top-bar-section .dropdown li { text-align:left; } .top-bar-section .right li .dropdown { left:0; right:auto; }
  • Tips
    Here's what a forum list looks like by default in Crowdstack 1.0: If you want to encase each forum, topic, and survey with a border, add this CSS to your theme: (You'll want to replace the background and border colors with your own of course.) Here's what the same forum list looks like after applying the CSS above:
  • Tips
    ❤️
    One of the new features is support for Font Awesome font icons. The advantage of using font icons is that they can scale to different sizes without distorting whereas using images can't scale without distorting or adding blurriness. New to the applilcation are text-based member badges instead of image-based badges. If you want to add some extra flair to your premium member badge, you can inject a Font Awesome font icon with some simple custom CSS. First, you must select which font icon you...
  • Tips
    ❤️
    Following up on now closed discussion of some things you can do to adjust the new sticky header option. I did not want the sticky header to use my default background color, so here's the CSS for adjusting the background color of the new Sticky Header. /*adjusts sticky header to give it white background when not sticky*/ .forum-topic-sticky-header:not(.fixed) { padding: 0 !important; background-color: white; } /*background color of sticky header when sticky*/ .forum-topic-sticky-header.fixed...
  • Crowdstack Discussion
    What do you think of this? If you're intrigued keep reading. If not; Move along folks. Nothing to see here. Fork to a New Topic We have the cool feature that let us fork a post to a new topic. and the post then gets a tag like this. The Problem But people will often reply to the post anyway - and that just makes things difficult. I just did this. When you click the Read More button it returns to To make this happen. Edit the forked post Edit the post Source Code Add the highlighted text...
  • Crowdstack Discussion
    ❤️
    Hi all, Not urgent at all. My community is going to stick with only supporting like reactions. I would like to change the emoji to thumbs up. But when I add my CSS, I get this error. "Your request contains invalid 4-byte characters (e.g. Emoji characters). Please go back, remove those special characters, and try your request again." Is there any way around this? Here is my code /*Love Icon*/ .emoji { visibility: hidden; position: relative; } .emoji:after { visibility: visible; position:...
  • Blog Post Comment
    Margarita- you have a separate support topic for that over here: https://hey.crowdstack.com/support/topic/beta-si...
  • Blog Post Comment
    So where is my site at, there is a copy of my site someplace?? I hope I am understanding this correctly.
  • Blog Post Comment
    Hi Helela- You would have been sent an email about your beta site well over a month ago, so you may want to check your email (perhaps check you email spam folder, as well). If you cannot find it, then please submit a support ticket for assistance: https://hey.crowdstack.com/support/post-topic Thanks!
  • Blog Post Comment
    Apologies. I may be confused but expected my new site to be showing today. Could you confirm when it crosses over?
  • Blog Post Comment
    Hi Richard- We emailed everyone about the time frame for each site. Yours will be upgraded today, sometime between 11 AM - 9 PM Eastern Time US. And there will be some downtime for your site when the upgrade happens. Please refer to the email we sent you a couple of weeks ago for specific details for your site. Or, if you have specific questions, please post to our support area here: https://hey.crowdstack.com/support Thanks!
  • Blog Post Comment
    ❤️
    This looks great! Great ideas & great job! Thanks!
  • Blog Post Comment
    HI. I work on ACEs Connection and i had tried to log into the Beta site to review the new set up but it seems to not recognize my user name (which is the name that I have in my ACEs Connection Network account). Not sure what to do?
  • Blog Post Comment
    Hi Gail, for the beta sites, only the SuperAdmin account is recognized, so you need to login with that account (you can have the SuperAdmin set up a fresh password when you're done). If you need more help with this, please email [email protected] and we can troubleshoot with you.
  • Blog Post Comment
    Think of RAID this way: You have a 3 disk drive RAID array. Using your vinyl record example, we'll consider each vinyl record on it's own LP player as a disk drive. Now our records can only be played at single speed, i.e.: audio speed. That's what we call the RPM, or the speed of the spindle. This means for a 6 minute song, if we stored it on one of our records, it would take us 6 minutes to listen to the entire song. It is not possible for us to play it any faster. The limitation of our...
  • Topic Reply
    Hi Rich. Please post your site's url. topic-list-box needs "padding" inside the container: Here's what we're using: .h-ubb-topic-list-box { background-color:#DEDFE0; border:1px solid #DEDFE0; padding:10px; } The How-to: I turn on Chrome's built in "Inspector" to view the CSS which is controlling whatever element I've highlighted on the webpage. (I place my cursor over the element on the site, then right click and select "inspector). Up pops a window with the html and the css source which I...
  • Topic Reply
    Hey Rich... long time! How are things over at OGR? Below is the pertinent custom CSS. I post it with caveats: Caveat 1: We aren't using the "cards" mode/version of Cstack. Like you, we're using what I believe used to be called "version 1" or the legacy format, (i.e. no cards enabled). Caveat 2: We're not running any third-party features (code). If someone is, then our width adjustment may create unintended (but not necessarily unfixable) changes. Caveat 3: Over the years, we've created quite...
×
×
×