Membership is FREE, giving all registered users unlimited access to every Acorn Domains feature, resource, and tool! Optional membership upgrades unlock exclusive benefits like profile signatures with links, banner placements, appearances in the weekly newsletter, and much more - customized to your membership level!

Recent content by jonoweb

  1. J

    Strike.co.uk - help with making something like this

    Yeah tis a bit off, doesn't flow too well, text too large and not in proportion imo. Depends what you want to do exactly, is it just the design or you have a similar service to offer or both? Saying that the theme and content are completely off. I can help with design / dev if interested feel...
  2. J

    Different logo depending on URL

    If it were sub domain based you could do this: $logo = "default"; $sub_domain = explode('.', $_SERVER['HTTP_HOST']); $sub_domain = str_replace("https://", "", $sub_domain); // Remove the https (or http) if (count($sub_domain) > 2) { if ($sub_domain[0] == "www") { // if non sub...
  3. J

    Different logo depending on URL

    Is it main domain or sub domain? You could do this for main domain: $url = $_SERVER['SERVER_NAME']; // or $_SERVER['HTTP_HOST']; $logo = "default_logo.png"; if ($url == "www.example.com") { $logo = "example1.png"; } elseif ($url == "www.example2.com") { $logo = "example2.png"; }...
General chit-chat
Help Users
  • No one is chatting at the moment.
      There are no messages in the current room.
      Top Bottom