Few things SimonE
Sorry to hear about the server crash. Always a concern during a storm for me as well.

1. any idea which file I might be able to edit to hard code the ad rotation speed?
2. Is there a way I could edit the layout to make the title of posts bold (and leave the author and other data plain)? Our users say it tends to visually run together.
3. Minor (very) issue - when you delete or zap a member, the message says "Are you sure you?" :)

Replies

Will get back to you early next week, visiting my dad for a few days so very limited internet access.

1. look in /Scripts/snitz.jquery.js for the comment //rotate ad banners this is where the interval is set for side/top banners
2. On which page?
3. This will be in the language strings, under admin|other|language resources, select the labels resource set and edit the Are_you_sure string.

2. on any page showing multiple topics i.e. https://www.charlestonfishing.com/forums/Forum/Posts/3?pagenum=1


BTW, rotate is misspelled (rotat) in the snitz.jquery.js - I had been searching on that.

2. on any page showing multiple topics i.e. https://www.charlestonfishing.com/forums/Forum/Posts/3?pagenum=1
Originally posted by SimonE


In the Content/Themes subfolders, add a new css entry in the snitz.min.css file the topic title has a class called topic-link so you just need to add a new style for that, something like
Code:

.topic-link{font-size : 1.5em}


so here
if ($("#banner-ad-top").length > 0) {
var b2 = setInterval(function () {
$.ajax({
url: window.SnitzVars.baseUrl + "Ad/TopBanner",
cache: false,
dataType: "html",
success: function (data) {
$("#banner-ad-top").html(data);
//$('#featured-img').css('visibility', 'visible').hide().fadeIn(2000);
}
});
}, 30000);

changing the numbers 2000 or 3000 don't seem to make a difference

looks like yours is using the minified file, so you will either need to edit your web.config file set compilation debug="true" so it uses the non minified versions of the js files or replace the snitz.jquery.min.js with a minified version of your snitz.jquery.js file or wait for the next update which fixes the issue.