News:

Bored?  Looking to kill some time?  Want to chat with other SMF users?  Join us in IRC chat or Discord

Main Menu

Exodus

Started by Diego Andrés, August 15, 2015, 09:47:32 PM

Previous topic - Next topic

Diego Andrés

Link to the theme



Free & Premium Responsive Themes for SMF




Exodus
Developed by Daniiel
Designed by César 'Raphisio' Gómez


Features
  • Responsive layout
  • Bootstrap
  • FontAwesome
  • Social networks
  • Logo URL
  • Custom copyright


Demo Online
GitHub

SMF Tricks - Free & Premium Responsive Themes for SMF.

Livaco

Good Job, I'm Installing The Theme As We Speak!

zkynk

#2
I really like this template so much but i see a big problem on template. When anybody login there are links in empty places on the left side of user avatar. Can you fix this @Daniiel ??


DavidMcRazy

#3
Hey, I installed the theme too, and I've noticed a problem, where if someone tries to access the forum from his iPhone or any mobile device, the logo isn't centered, can you fix this? Or is it intentional and I can change it ? @Daniiel
Screenshot of the problem:

ElRaffo

Hi, I have a problem after installing the theme EXODUS, the mobile version is incomplete, so I would know how to make the desktop version for the mobile

Desktop Version:


Mobile Version:


Please, help me.

Irisado

I've merged your topic into the support topic for this theme.  For future reference, please remember that requests for help with specific themes or mods should be posted in the support topic for that theme or mod.
Soñando con una playa donde brilla el sol, un arco iris ilumina el cielo, y el mar espejea iridescentemente

Kindred

for the record, the "mobile" view is exactly as it is intended to be.
Traditionally, in a responsive design, the smaller the screen gets, the fewer contents are actually displayed --   so the mobile/phone view will have only the basic things needed to work through the forum...

there is no "desktop version" or "mobile version"
it is all controlled by CSS based on the WIDTH of the screen that is calling for display.

If you want something that display identically on mobile and desktop, then I suggest that you install theme that is NOT flagged as "responsive"
Слaва
Украинi

Please do not PM, IM or Email me with support questions.  You will get better and faster responses in the support boards.  Thank you.

"Loki is not evil, although he is certainly not a force for good. Loki is... complicated."

Portugal

Hi all,

Im trying this excelent theme, after instal it on a tester forum i see some space empty and if possibile i want to try to insert on that empty space something, some information, like a banner (Ads) or some kind of space to include the NEWS of the forum, is that possibile?
See the attatched image to better understanding of my point of view.


Thanks in advance

Casa Grande

Love this theme!  Some of my users are using IE11 and having a problem with the scrollbar showing up on one line comments only.  See attached image.

Any ideas on how to fix this?

jslay

Having issues where the user cannot select 'Remember Me' from the Login tab in the top left as it does not exist.

Casa Grande

Quote from: jslay on September 13, 2015, 03:32:15 AM
Having issues where the user cannot select 'Remember Me' from the Login tab in the top left as it does not exist.

That's an easy fix.  This is how I added that function to the quick login.  Open up the index.template.php and find

<input type="password" name="passwrd" size="10" class="input_password" placeholder="', $txt['password'], '" /><input type="submit" value="" />

After it, add this

<span><font style="color: #fff; text-transform: uppercase; font-weight: lighter;font-size: 12px;">Want to Stay Logged In?&nbsp;</font></span><input type="checkbox" name="cookieneverexp" class="input_check" onclick="this.form.cookielength.disabled = this.checked;">


That's what I did.  My coding might be a little sloppy, but it works.




helyea

How can i change the colors of this bars?


Livaco

Quote from: helyea on September 13, 2015, 09:45:01 AM
How can i change the colors of this bars?


The IMG fixed:

justinguru

please daniel your theme is very nice but i have an issue sa facebook integration .. wen i install the sa facebook plugin in your reseller and exodus  themes i get
/Display.template.php   test failed  then i see add before and replace .. what do i do

justinguru

please is it possible to put my logo in that apace above the the menu instead of that small logo space

Daniiel

#15
Quote from: justinguru on September 17, 2015, 11:02:13 PM
please daniel your theme is very nice but i have an issue sa facebook integration .. wen i install the sa facebook plugin in your reseller and exodus  themes i get
/Display.template.php   test failed  then i see add before and replace .. what do i do
Well you have to follow the parse of the mod:
Display.template.php
Search:
// Maybe we can approve it, maybe we should?
if ($message['can_approve'])

Add before:
if (class_exists('SAFacebookhooks')) {
echo
SAFacebookhooks::facebook_showPub(
array(
'subject' => $message['subject'],
'body' => $message['body'],
'href' => $message['href'],
'isPost' => true,
)
);
}


Search:
if ($message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])

Replace with:
if (!empty($context['show_publish_button']) && !$context['user']['is_logged'] || !empty($context['show_publish_button']) && $context['user']['is_logged'] || $message['can_approve'] || $context['can_reply'] || $message['can_modify'] || $message['can_remove'] || $context['can_split'] || $context['can_restore_msg'])


Quote from: justinguru on September 17, 2015, 11:04:35 PM
please is it possible to put my logo in that apace above the the menu instead of that small logo space
index.template.php
Search:
<div id="logo"><a href="', $scripturl, '"><img src="' , !empty($context['header_logo_url_html_safe']) ? $context['header_logo_url_html_safe'] : $settings['images_url'] . '/logo.png' , '" alt="' . $context['forum_name'] . '" /></a></div>
</div>
<header>';


Replace with:
</div>
<header>
<div id="logo"><a href="', $scripturl, '"><img src="' , !empty($context['header_logo_url_html_safe']) ? $context['header_logo_url_html_safe'] : $settings['images_url'] . '/logo.png' , '" alt="' . $context['forum_name'] . '" /></a></div>';


index.css
Search:
#logo img
{
position: absolute;
right: 0;
left: 0;
margin: 0 auto;
max-height: 60px;
}

Replace with:
@media (min-width: 768px)
{
#logo img
{
float: left;
}
}



Quote from: helyea on September 13, 2015, 09:45:01 AM
How can i change the colors of this bars?


Index.css
Search:
.navbar-default
{
background-color: #FFF;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .075);
box-shadow: 0 4px 10px rgba(0, 0, 0, .075);
border-radius: 0 0 0 0;
margin-bottom: 0;
}

And change background-color: #FFF;

Search:
.breadcrumb
{
background-color: #FFF;
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .075);
box-shadow: 0 4px 10px rgba(0, 0, 0, .075);
border-radius: 0 0 5px 5px;
margin: 0 15px 20px;
}

And change background-color: #FFF;


Quote from: Casa Grande on September 12, 2015, 08:14:16 AM
Love this theme!  Some of my users are using IE11 and having a problem with the scrollbar showing up on one line comments only.  See attached image.

Any ideas on how to fix this?
Try with this:
Index.css
Search:
.post, .personalmessage
{
overflow: auto;
line-height: 1.4em;
padding: 0.1em 0;
}

Replace with:
.post, .personalmessage
{
overflow: hidden;
line-height: 1.4em;
padding: 0.1em 0;
}



Quote from: Portugal on September 09, 2015, 10:11:51 AM
Hi all,

Im trying this excelent theme, after instal it on a tester forum i see some space empty and if possibile i want to try to insert on that empty space something, some information, like a banner (Ads) or some kind of space to include the NEWS of the forum, is that possibile?
See the attatched image to better understanding of my point of view.


Thanks in advance
Do this:
index.template.php
Search:
<header>';
Replace with:
<header>
<div class="col-md-6">
Content
</div>';

You only have to change "Content" for what you want, for example, if you want to add news, use this:
<header>';
// Show a random news item? (or you could pick one from news_lines...)
if (!empty($settings['enable_news']))
echo '
<div class="col-md-6 text-left">
<h2>', $txt['news'], '</h2>
<p>', $context['random_news_line'], '</p>
</div>';



Quote from: zkynk on August 16, 2015, 04:02:27 PM
I really like this template so much but i see a big problem on template. When anybody login there are links in empty places on the left side of user avatar. Can you fix this @Daniiel ??


This is for everyone who uses the theme
Index.template.php
Search:
[code] if($context['user']['is_logged'])
{
echo'
<img class="avatar img-circle img-thumbnail floatright" src="', !empty($context['user']['avatar']['href']) ? $context['user']['avatar']['href'] : $settings['images_url']. '/noavatar.png' ,'" alt="*" />
<a class="h4" href="', $scripturl , '?action=profile">', $context['user']['name'], '</a>
<a href="', $scripturl, '?action=profile;area=forumprofile">', $txt['forumprofile'], '</a>
<a href="', $scripturl, '?action=profile;area=account">', $txt['account'], '</a>
<a href="', $scripturl, '?action=unread">', $txt['unread_topics_visit'], '</a>
<a href="', $scripturl, '?action=unreadreplies">', $txt['unread_replies'], '</a>';
// Is the forum in maintenance mode?
if ($context['in_maintenance'] && $context['user']['is_admin'])
echo '
<div class="h5">', $txt['maintain_mode_on'], '</div>';
// Are there any members waiting for approval?
if (!empty($context['unapproved_members']))
echo '
<div class="h5">', $context['unapproved_members'] == 1 ? $txt['approve_thereis'] : $txt['approve_thereare'], ' <a href="', $scripturl, '?action=admin;area=viewmembers;sa=browse;type=approve">', $context['unapproved_members'] == 1 ? $txt['approve_member'] : $context['unapproved_members'] . ' ' . $txt['approve_members'], '</a> ', $txt['approve_members_waiting'], '</div>';
if (!empty($context['open_mod_reports']) && $context['show_open_reports'])
echo '
<div class="h5"><a href="', $scripturl, '?action=moderate;area=reports">', sprintf($txt['mod_reports_waiting'], $context['open_mod_reports']), '</a></div>';
}
[/code]
Replace with:
if($context['user']['is_logged'])
{
echo'
<div class="user">
<img class="avatar img-circle img-thumbnail floatright" src="', !empty($context['user']['avatar']['href']) ? $context['user']['avatar']['href'] : $settings['images_url']. '/noavatar.png' ,'" alt="*" />
<a class="h4" href="', $scripturl , '?action=profile">', $context['user']['name'], '</a>
<a href="', $scripturl, '?action=profile;area=forumprofile">', $txt['forumprofile'], '</a>
<a href="', $scripturl, '?action=profile;area=account">', $txt['account'], '</a>
<a href="', $scripturl, '?action=unread">', $txt['unread_topics_visit'], '</a>
<a href="', $scripturl, '?action=unreadreplies">', $txt['unread_replies'], '</a>';
// Is the forum in maintenance mode?
if ($context['in_maintenance'] && $context['user']['is_admin'])
echo '
<div class="h5">', $txt['maintain_mode_on'], '</div>';
// Are there any members waiting for approval?
if (!empty($context['unapproved_members']))
echo '
<div class="h5">', $context['unapproved_members'] == 1 ? $txt['approve_thereis'] : $txt['approve_thereare'], ' <a href="', $scripturl, '?action=admin;area=viewmembers;sa=browse;type=approve">', $context['unapproved_members'] == 1 ? $txt['approve_member'] : $context['unapproved_members'] . ' ' . $txt['approve_members'], '</a> ', $txt['approve_members_waiting'], '</div>';
if (!empty($context['open_mod_reports']) && $context['show_open_reports'])
echo '
<div class="h5"><a href="', $scripturl, '?action=moderate;area=reports">', sprintf($txt['mod_reports_waiting'], $context['open_mod_reports']), '</a></div>';
echo'
</div>';
}

Index.css
Add to the end:
div.user
{
width: 33.3%;
float: right;
}

Portugal

Thanks Daniiel you made a excelent job, well for the master all is easy :) very thanks, it worked for me as a charm :)

Thanks

jslay

Quote from: Casa Grande on September 13, 2015, 09:35:38 AM
Quote from: jslay on September 13, 2015, 03:32:15 AM
Having issues where the user cannot select 'Remember Me' from the Login tab in the top left as it does not exist.

That's an easy fix.  This is how I added that function to the quick login.  Open up the index.template.php and find

<input type="password" name="passwrd" size="10" class="input_password" placeholder="', $txt['password'], '" /><input type="submit" value="" />

After it, add this

<span><font style="color: #fff; text-transform: uppercase; font-weight: lighter;font-size: 12px;">Want to Stay Logged In?&nbsp;</font></span><input type="checkbox" name="cookieneverexp" class="input_check" onclick="this.form.cookielength.disabled = this.checked;">


That's what I did.  My coding might be a little sloppy, but it works.

Awesome man, thank you so much!!!

stucki

Nice theme, but on problem. On the smf info center function last Topic dont work. Can you fix it please. 

stucki

In the menu, I added a few tabs. in responsive mode, these tabs are not visible. How can this be fixed?

Thank you

Advertisement: