Frontpage

I'm looking for the frontpage add-on, that looks like this. (I have seen it on multiple sites, but I will just link 2 of them)
 
I don't think that's an add-on, those look like normal landing pages for forums. Those can be created pretty easily using HTML, CSS and a little bit of Javascript for certain effects. those pages don't indicate that they are an add-on within XF in any shape or form.
 
I don't think that's an add-on, those look like normal landing pages for forums. Those can be created pretty easily using HTML, CSS and a little bit of Javascript for certain effects. those pages don't indicate that they are an add-on within XF in any shape or form.
And how much would you charge for a frontpage?
 
Depends on what you want done. If you're looking for a simple design like that, probably somewhere around $75-$100. Are you looking for something similar to that where you won't be updating anything on it, or something where you want to be able to post updates and such? Because if you're looking for something you can update news to and such, there's other add-ons for Xenforo that can handle that, but they won't look anything like what you listed above. It'd help knowing what it is exactly you're looking for. :)
 
I agree both of those aren't really anything to do with a xenforo addon.

BUT Beware, the send link on your OP is totally bad - it does not work responsively so would be a disaster on phone.
 
Depends on what you want done. If you're looking for a simple design like that, probably somewhere around $75-$100. Are you looking for something similar to that where you won't be updating anything on it, or something where you want to be able to post updates and such? Because if you're looking for something you can update news to and such, there's other add-ons for Xenforo that can handle that, but they won't look anything like what you listed above. It'd help knowing what it is exactly you're looking for. :)
$75-$100 for that simple design!? It's just a background image, with a logo and 3 other images with re-directions. Here is the code, just add your own images.

Code:
<!-- Proudly created by BlexieKing -->
<!-- https://www.spigotmc.org/members/blexieking.168027 -->

<!DOCTYPE html>
<html>
<head>
    <title>Minelife - Official Website</title>
    <meta name="description" content="Minelife er en dejlig dansk Minecraft server. Du kan joine med IP 'Minelife.dk'.">
    <meta name="keywords" content="Minelife, Minelife.dk, Minecraft Server, Minecraft, Fun, Play, Portal, Website, Official">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta charset="utf-8">
    <link rel="stylesheet" href="css/stylesheet.css">
    <script src="https://cdn.rawgit.com/leonardosnt/mc-player-counter/1.1.0/dist/mc-player-counter.min.js"></script>
</head>
<body>
    <div class="container">
        <div class="logo">
            <!-- In the img folder, upload your logo. -->
            <!-- Make sure to name it 'logo.png'! -->
            <img src="img/logo.png" alt="Minelife logo">
        </div>

        <div class="items">
            <div class="item forums">
                <!-- Replace # with your forum URL-->
                <a href="http://minelife.dk/forum/"><img src="img/forums.png" alt="Minecraft forums icon" class="img"></a>
            </div>

            <div class="item store">
                <!-- Replace # with your store URL -->
                <a href="http://minelifedk.buycraft.net/"><img src="img/store.png" alt="Minecraft store icon" class="img"></a>
            </div>

            <div class="item vote">
                <!-- Replace # with your vote URL -->
                <a href="http://minelife.dk/forum/index.php?threads/vote-links.1737/#post-4562"><img src="img/vote.png" alt="Minecraft voting icon" class="img"></a>
            </div>
        </div>

    </div>

    <script src="https://code.jquery.com/jquery-1.11.2.min.js" type="text/javascript"></script>
    <script src="js/firefly.js" type="text/javascript"></script>
    <script src="js/main.js" type="text/javascript"></script>
</body>
</html>
 
As I stated earlier @JoyFreak , depends on what exactly he wants for a frontpage. He didn't really specify. If he's looking to copy the other site to a T then yeah using stolen code is a good way to go about it I guess. :p
 
As I stated earlier @JoyFreak , depends on what exactly he wants for a frontpage. He didn't really specify. If he's looking to copy the other site to a T then yeah using stolen code is a good way to go about it I guess. :p
If he changes it by adding his own images then it won't be a copy. You can't steal code when the code is predefined.
 
@Viktor Aggerholm assuming you have graphics, creating a page like this is actually rather easy in XenForo. I'd:

  1. Create a new style called "Home Page Style"
  2. Create a new node called "Home" and force the style to that "Home Page Style" (it's an option when creating the page node)
  3. Edit the template "page_container" under the "Home Page Style" and replace all the HTML with your own custom HTML
  4. Set the home page url to your new home page node

Simplified instructions of course :D
 
Back
Top Bottom