|
You'll have to forgive my ignorance, but I'm muddling through the documentation and get it just enough to feel like I'm on the right course. I want the Style helper to do two things - 1) dump the default css files from DNN and 2) redirect to another website
if the request is coming from a mobile device.
Here's what i have in the skin:
<%@ Register TagPrefix="fortyfingers" TagName="STYLEHELPER" Src="~/DesktopModules/40Fingers/SkinObjects/StyleHelper/StyleHelper.ascx" %>
<fortyfingers:STYLEHELPER ID="STYLEHELPER1" RemoveCssFile="Default.css,Portal.css,Container.css" runat="server" />
<fortyfingers:STYLEHELPER ID="STYLEHELPER2" RedirectTo="https://www.teeitup.com/golf/mob/bookmob.pl?C=55082" RedirectMode="Session" IfMobile="True" runat="server" />
It looks like the default css files aren't loading, but I can't get the mobile detection and redirection to work. I'd appreciate a shove in the right direction. Thanks
|