Simple Machines Community Forum

Customizing SMF => Graphics and Templates => Theme Site Themes => Topic started by: The Domain Shop on January 07, 2012, 02:12:32 PM

Title: Insidious II
Post by: The Domain Shop on January 07, 2012, 02:12:32 PM
Link to theme (http://custom.simplemachines.org/themes/index.php?lemma=2534)

Insidious II

Insidious II is an updated version of http://custom.simplemachines.org/themes/index.php?lemma=2451

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FiMACaJW.png&hash=5d547f54dbfc3740ac8d9f5b43c07510134f204e)

Changes we made are:

Re-designed header area
Fixed width
Cleaned up menu
Changes to some font colors

This theme uses some css3 which will not render in older browsers

>> License – Read included txt file <<

Created by:
(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fi.imgur.com%2FWxKnn7N.png&hash=408684e624f2d8f7996f6ef3673fb96d50245448) (http://www.knownbb.com/)

For more free themes visit us here (http://themes.knownbb.com)

For theme support visit us here (http://forum.knownbb.com)
Title: Re: Insidious II
Post by: ProdigySim on January 17, 2012, 12:13:25 PM
Hi, I've been using and modifying your theme for the past week or so. Overall it is a very nice and professional looking theme. Thanks for making it!

There's a few issues we've had to address while using it.

1. A few of the small icons have single, white pixels in their corners. Notably images/english/new.gif and the 4 "star" icons (star.gif, staradmin.gif, starmod.gif, stargmod.gif).
2. The #topbar div is too small when you're not logged in and you have "Show a quick login on every page" enabled (the quick login area becomes too large).
3. The "(No) New Posts" icons seemed a little hard to distinguish for me (off.png and on.png).
4. There's a general lack of color--which I think makes it harder to attract users' attention.

That said, your template has been an invaluable starting point for my website. I hope I can help by returning this feedback.
Title: Re: Insidious II
Post by: ARG01 on January 18, 2012, 02:21:39 AM
Not too keen on how the menu jumps on hover but nice theme overall. Reminds me of Crip's Black Rain.


;)
Title: Re: Insidious II
Post by: Topperfalkon on January 21, 2012, 03:48:34 PM
as noted by the other users, this theme has been an invaluable starting point but has a few problems.


Other than that, no major issues so far.
Title: Re: Insidious II
Post by: The Domain Shop on January 23, 2012, 07:09:04 AM
Quote from: Topperfalkon on January 21, 2012, 03:48:34 PM
as noted by the other users, this theme has been an invaluable starting point but has a few problems.


  • Having a fixed width leaves a lot of unused real estate on the screen, and means it doesn't scale to screen size. Using a percentage width is much more professional
  • The background image was not long enough for modern resolutions and scrolls. I had to stretch the background and add the 'fixed' variable for that image
  • It's not cool to plant text advertising in the copyright section

Other than that, no major issues so far.

These issues have already been addressed, except im having trouble re-uploading the theme at the moment. As for the so called "text advertising" both links in the footer are both my sites ???
Title: Re: Insidious II
Post by: Topperfalkon on January 23, 2012, 09:52:03 PM
Ah, fair enough.

I've removed the second link for your hosting site, but I did retain the copyright and link to the skin-box site, because I give credit where credit is due, obviously.

Glad to hear those problems are fixed though and I hope you get many more happy 'customers' in the future :) I'm certainly happy enough with what I got to start off with.
Title: Re: Insidious II
Post by: DarkAngel612 on February 13, 2012, 07:58:43 PM
I would like to know the name of the font you used for the header image.
Title: Re: Insidious II
Post by: Mr. Pedram on February 26, 2013, 04:27:34 PM
.dropmenu li li a:hover, .dropmenu li li:hover>a

i didn't see such a css code like this before  :D

li:hover>a

@index.css
line 1194
Title: Re: Insidious II
Post by: Arantor on February 26, 2013, 04:39:17 PM
Yeah, element > element is fine in CSS, it means specific child.

li:hover a normally means any a tag that is any level of descendent of li:hover, li:hover a means any a tag that is specifically a child of an li:hover, not any descendent thereafter.
Title: Re: Insidious II
Post by: Antechinus on February 26, 2013, 04:55:16 PM
Yup. If that's not clear, it works like this:

.dropmenu li li a:hover

That code will target all anchors listed below.

<ul class="dropmenu">
<li>Stuff_here
<ul>
<li><a> 1 </a></li>
<li><a> 2 </a>
<ul>
<li><a> 3 </a></li>
<li><a> 4 </a>
<ul>
<li><a> 5 </a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>';



On the other hand, this code will only target links 1 and 2.

.dropmenu li li:hover>a

This is very handy for instances where you don't want the same presentation being inherited down through all levels.

The other point about the second part, is that putting the :hover on the li makes the anchor within it stay highlighted when you move your cursor over to the next level of the menu. This is because the li extends to hold the next level flyout, so you are still hovering over the li.
Title: Re: Insidious II
Post by: Mr. Pedram on February 26, 2013, 05:22:16 PM
Very interesting, never seen before
thanks for explain :)
Title: Re: Insidious II
Post by: Mr. Pedram on March 14, 2013, 04:53:42 PM
@Trax,
Please take a look to this topic:
http://www.simplemachines.org/community/index.php?topic=499659.0
Title: Re: Insidious II
Post by: The Domain Shop on March 15, 2013, 10:12:14 AM
Quote from: Mr. Pedram on March 14, 2013, 04:53:42 PM
@Trax,
Please take a look to this topic:
http://www.simplemachines.org/community/index.php?topic=499659.0

RTL Updated to correct issue with post buttons. I will need to have a look at why the bottom navigation is not following RTL rules.

PS: I also expect you to put the link back in the footer of my theme!

EDIT: Fixed. Re-download and replace rtl.css and index.template.php
Title: Re: Insidious II
Post by: Mr. Pedram on March 15, 2013, 12:48:38 PM
QuotePS: I also expect you to put the link back in the footer of my theme!

Sorry, what i have done is illegal?
if you want, ok i do!

QuoteEDIT: Fixed. Re-download and replace rtl.css and index.template.php

Thank you, may i request you to put those codes that need to change here? because (as you know probably) i have done very change to this theme, include index.template.php, and css , rtl. i can't replace neither.

Title: Re: Insidious II
Post by: Topperfalkon on March 17, 2013, 04:48:43 PM
I've been trying to use your latest version of the theme, and I seem to have hit upon the same issue as I had with the other theme.

For some reason, the 'news ticker' that used to display is no longer displaying on your themes (although it displays fine on default). I have recently moved the install directory of the forums, but I've fixed all the links in config and db to my knowledge, so I'm not sure what's happening.

Also, you have my thanks for releasing this as CC BY-NC-SA, but I'd add that it's not particularly clear in your theme's copyright section.
Title: Re: Insidious II
Post by: Topperfalkon on March 17, 2013, 06:24:42 PM
As it happens, it doesn't seem to be picking up changes to Subs.php either, even on the default theme.

So maybe it's not entirely related to the theme.
Title: Re: Insidious II
Post by: The Domain Shop on March 18, 2013, 08:37:23 AM
Quote from: Mr. Pedram on March 15, 2013, 12:48:38 PM
QuotePS: I also expect you to put the link back in the footer of my theme!

Sorry, what i have done is illegal?
if you want, ok i do!

QuoteEDIT: Fixed. Re-download and replace rtl.css and index.template.php

Thank you, may i request you to put those codes that need to change here? because (as you know probably) i have done very change to this theme, include index.template.php, and css , rtl. i can't replace neither.

In the index.template replace everything between

// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..

}


With this

// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree($force_show = false)
{
global $context, $settings, $options, $shown_linktree;

// If linktree is empty, just return - also allow an override.
if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show))
return;

echo '
<div class="navigate_section">
<ul>';

// Each tree item has a URL and name. Some may have extra_before and extra_after.
foreach ($context['linktree'] as $link_num => $tree)
{
echo '
<li', ($link_num == count($context['linktree']) - 1) ? ' class="last"' : '', '>';

// Show something before the link?
if (isset($tree['extra_before']))
echo $tree['extra_before'];

// Show the link, including a URL if it should have one.
echo $settings['linktree_link'] && isset($tree['url']) ? '
<a href="' . $tree['url'] . '"><span>' . $tree['name'] . '</span></a>' : '<span>' . $tree['name'] . '</span>';

// Show something after the link...?
if (isset($tree['extra_after']))
echo $tree['extra_after'];

// Don't show a separator for the last one.
if ($link_num != count($context['linktree']) - 1)
echo ' &#187;';

echo '
</li>';
}
echo '
</ul>
</div>';

$shown_linktree = true;
}


Quote from: Topperfalkon on March 17, 2013, 06:24:42 PM
As it happens, it doesn't seem to be picking up changes to Subs.php either, even on the default theme.

So maybe it's not entirely related to the theme.

So this is not theme related?

Quotebut I'd add that it's not particularly clear in your theme's copyright section.

Not too sure what you are saying here?
Title: Re: Insidious II
Post by: Mr. Pedram on March 18, 2013, 09:25:36 AM
Thanks @Trax , but arrows have a problem! you need to do a little change in rtl.css to make it perfect for rtl pages, this will fix arrows issue:

/* The navigation list (i.e. linktree) */
.navigate_section ul li {
  float: right;
  padding: 0 0 0 0.5em;
}


Replace With:

/* The navigation list (i.e. linktree) */
.navigate_section ul li
{
  float: right;
  direction: rtl;
  padding: 0 0 0 0.5em;
}


Title: Re: Insidious II
Post by: The Domain Shop on March 18, 2013, 11:37:27 AM
It should work without using direction: in the css, it does for me. But if that works for you than great :)
Title: Re: Insidious II
Post by: Antechinus on March 18, 2013, 05:16:22 PM
If you want to try something different, you can write a linktree that will do the arrows automatically in ltr and rtl. You're calling one html entity for the arrows. You can call different ones for rtl and ltr, either by using a ternary in the linktree markup:

// Don't show a separator for the last one.
if ($link_num != count($context['linktree']) - 1)
$context['right_to_left'] ? '«' : '»';


or, you can get even sneakier and remove the arrows from the template completely, and set them in the CSS by using the :before or :after pseudo element and CSS3 first-child or last-child to hide the one you want hidden. ;)

Using first-child is better for performance, in which case you'd also be using :before to put the arrows in front of each link.
Title: Re: Insidious II
Post by: Topperfalkon on May 12, 2013, 12:05:49 PM
I've recently trashed my forums and gone with a completely fresh install, which has solved a few problems I was having.

However, I am still having issue with the news fader on an equally fresh install of this theme, It's not showing up at all.

It's a shame because I quite like this theme, but it doesn't seem to want to work properly :(

I've checked in Firefox and Chrome, so I doubt it's a browser-specific issue I'm having.

Any chance of some help figuring this out?
Title: Re: Insidious II
Post by: Mr. Pedram on May 12, 2013, 02:02:37 PM
Quote from: Topperfalkon on May 12, 2013, 12:05:49 PM
I've recently trashed my forums and gone with a completely fresh install, which has solved a few problems I was having.

However, I am still having issue with the news fader on an equally fresh install of this theme, It's not showing up at all.

It's a shame because I quite like this theme, but it doesn't seem to want to work properly :(

I've checked in Firefox and Chrome, so I doubt it's a browser-specific issue I'm having.

Any chance of some help figuring this out?

This prob not related to this theme, surely. i'm already using of this theme,  news fader working perfectly on both browser.
check you'r error log.
Title: Re: Insidious II
Post by: Topperfalkon on June 02, 2013, 10:17:49 PM
Error log didn't give me anything..
Title: Re: Insidious II
Post by: The Domain Shop on June 07, 2013, 06:02:20 PM
Quote from: Topperfalkon on June 02, 2013, 10:17:49 PM
Error log didn't give me anything..

Hi Topperfalkon,

I have just tested the theme and the news fader is working fine for me.

To to be clear, you do mean the news line that appears on top of the board index and not the news line that would normally be in the header?
If you are referring to the news line in the header then this theme doesn't have one. It can easily be added though if you require it.
Title: Re: Insidious II
Post by: DarkAngel612 on May 19, 2014, 05:34:18 PM
Quote from: Topperfalkon on May 12, 2013, 12:05:49 PM
I've recently trashed my forums and gone with a completely fresh install, which has solved a few problems I was having.

However, I am still having issue with the news fader on an equally fresh install of this theme, It's not showing up at all.

It's a shame because I quite like this theme, but it doesn't seem to want to work properly<$1alt="" title="" onresizestart="return false;" id="smiley__$2" style="padding: 0 3px 0 3px;" />

I've checked in Firefox and Chrome, so I doubt it's a browser-specific issue I'm having.

Any chance of some help figuring this out?


Reupload all files again, there might have been one that got corrupted or left out the last time.

You are doing the upload of the files manually right? Not using something like softilicious or fantastico

Does it work in the default template?



Quote from: Bunneh on May 19, 2014, 02:31:27 PM
Hello, well I was wondering how would I fix the broken text on my Moderation tab? It goes [Moderation Log] [Unapproved Posts and Topics] [Unapproved Attachments] [Reported Posts]

The problem is that [Unapproved Posts and Topics] is to long it cuts into [Unapproved Attachments] therefore covering up half of it.

An Image of the tab would work great so they can see what is going on as well as a link to the site.
Title: Re: Broken Text
Post by: The Domain Shop on May 23, 2014, 09:25:36 PM
Quote from: Bunneh on May 19, 2014, 02:31:27 PM
Hello, well I was wondering how would I fix the broken text on my Moderation tab? It goes [Moderation Log] [Unapproved Posts and Topics] [Unapproved Attachments] [Reported Posts]

The problem is that [Unapproved Posts and Topics] is to long it cuts into [Unapproved Attachments] therefore covering up half of it.

In index.css change the width of

#topnav li li {
   width: 200px;
   height: auto;
   padding: 0;
}

And

#topnav li ul {
   background: #202020;
   position: absolute;
   width: 200px;
   left: -999em;
   margin-left: -1px;;
}
Title: Re: Insidious II
Post by: Mr. Pedram on July 18, 2014, 05:00:30 PM
Hi,
i have i little problem with this theme,
quote not working on quick reply, i check this on default theme and it was ok, problem is on this theme, any idea how to solve this?
on chrome and ff tested
Title: Re: Insidious II
Post by: DarkAngel612 on July 18, 2014, 05:10:20 PM
Quote from: Mr. Pedram on July 18, 2014, 05:00:30 PM
Hi,
i have i little problem with this theme,
quote not working on quick reply, i check this on default theme and it was ok, problem is on this theme, any idea how to solve this?
on chrome and ff tested

did all files get uploaded?

by not working, do you mean you get an error...does it just sit there.....does it not show up --- not working is so general that if you get specific about what it is doing and what it is not doing you might get more help.

did you set the setting in admin to let it use quick reply.
Title: Re: Insidious II
Post by: Mr. Pedram on July 18, 2014, 05:33:15 PM
yes quick reply is always open
no error in console FF and Chrome
i just click on quote on a post, then i don't see ajax loader, just #quickReplyOptions added to URL
scrolled to quick reply, and then nothing..

error log:

http://mysite.com/index.php?topic=14.;msg=314008: Undefined index: start
/homepages/5/XXXX/htdocs/MySite/Themes/InsidiousV2_12/Display.template.php
Line: 560

Here is:

Code (Display.template.php line 560) Select
<div class="smalltext">&#171; <b>', isset($context['sl-singlepost']) ? ($context['sl-singlepost'] == 0 ? $txt['topic-start'] : $txt['reply_noun'] . ' #' . $context['sl-singlepost']) : ($message['counter'] == 0 ? '<a href="' . $scripturl . '?topic=' . $context['current_topic'] . '.' . $message['start'] . ';msg=' . $message['id'] . '">' . $txt['topic-start'] . '</a>' : '<a href="' . $scripturl . '?topic=' . $context['current_topic'] . '.' . $message['start'] . ';msg=' . $message['id'] . '">' . $txt['reply_noun'] . ' #' . $message['counter'] . '</a>') ,':</b> ', $message['time'], ' &#187;</div>

is it related?

i think all files uploaded but which files need to do quote on quick reply?
Title: Re: Insidious II
Post by: DarkAngel612 on July 18, 2014, 05:37:47 PM
That is strange. I have this theme in 3 forums and they behave with quick reply, I just chose to have less real estate used by not turning that on, especially since many would rather use the rest of the bbc buttons.

Do you have a link to your forum, that is really good to post (sorry if you did I missed it, been moving to new host/server and it has not been easy this time)
Title: Re: Insidious II
Post by: Mr. Pedram on July 18, 2014, 05:44:46 PM
I have this theme on another forum, on that forum it's ok , but in this one i got this issue.
i should mention this, i copied files from that forum, maybe i left or lost something.. i dunno
i will send the link for you.
Title: Re: Insidious II
Post by: DarkAngel612 on July 18, 2014, 06:14:31 PM
I also have copied files over to a different forum and although it works with some, others put up a fight.

I just install fresh then save the original file, copy paste what I edited from the working one to the duplicate of the new one and see if that worked.

You can open your zip, look at the files you copied over to the this naughty one and see if there is all the ones in the server that should be there.

Answered the pm...brb
Title: Re: Insidious II
Post by: DarkAngel612 on July 18, 2014, 06:27:02 PM
well I am back

I looked at the ones offered in download area here

Indidious is the one that never wanted to work for me

Insidious II at first gave trouble working on any of the sites but then they had the update in 2013 and that one worked beautifully. I have that one installed in my forums, I edited the name to add UD022013

I did not update it when I went from v2.0.6 to the one we have now 2.0.8. So if you have the new one InsidiousV2-u, then maybe something got changed.

I would not think so but then that is why I don't think...I mess things up that way.

You could try installing it fresh then copy files you edited from the working one to the new install,  adding OLD to the name of the current one will help too...like Display.template.phpOLD, this turns off the old so it will use the new with no conflict.
Title: Re: Insidious II
Post by: The Domain Shop on July 19, 2014, 01:28:16 PM
I have made no changes to the theme in a long time so it should be working fine. Delete the installed theme and install a clean version and let me know what happens?
Title: Re: Insidious II
Post by: Mr. Pedram on July 20, 2014, 12:28:49 PM
Quote from: DarkAngel612 on July 18, 2014, 06:14:31 PM
I also have copied files over to a different forum and although it works with some, others put up a fight.

I just install fresh then save the original file, copy paste what I edited from the working one to the duplicate of the new one and see if that worked.

You can open your zip, look at the files you copied over to the this naughty one and see if there is all the ones in the server that should be there.

Answered the pm...brb

Quote from: DarkAngel612 on July 18, 2014, 06:27:02 PM
well I am back

I looked at the ones offered in download area here

Indidious is the one that never wanted to work for me

Insidious II at first gave trouble working on any of the sites but then they had the update in 2013 and that one worked beautifully. I have that one installed in my forums, I edited the name to add UD022013

I did not update it when I went from v2.0.6 to the one we have now 2.0.8. So if you have the new one InsidiousV2-u, then maybe something got changed.

I would not think so but then that is why I don't think...I mess things up that way.

You could try installing it fresh then copy files you edited from the working one to the new install,  adding OLD to the name of the current one will help too...like Display.template.phpOLD, this turns off the old so it will use the new with no conflict.

Thanks for your help, actually i can't update the theme because i made many changes to it, i wonder it working on that forum, but not working in this one. but i think need a compare with new update to find the solution.

Title: Re: Insidious II
Post by: CHRIS-7 on February 17, 2015, 06:37:09 PM
Yess , This Theme is Very Very Very GOOD

Just : Insidious II

:) :) ;D ;D :laugh: :laugh:
Title: Re: Insidious II
Post by: The Domain Shop on February 21, 2015, 02:18:26 PM
Quote from: CHRIS-7 on February 17, 2015, 06:37:09 PM
Yess , This Theme is Very Very Very GOOD

Just : Insidious II

:) :) ;D ;D :laugh: :laugh:

Thanks, glad you like it :)
Title: Re: Insidious II
Post by: CHRIS-7 on March 22, 2015, 09:36:14 AM
Hi Trax

I Want To Change Width My Forum In The Index.css

How To Do It?

Which Line To Change For Bigger Or Smaller Width
Title: Re: Insidious II
Post by: DarkAngel612 on March 22, 2015, 09:45:38 AM
Quote from: CHRIS-7 on March 22, 2015, 09:36:14 AM
Hi Trax

I Want To Change Width My Forum In The Index.css

How To Do It?

Which Line To Change For Bigger Or Smaller Width

Find and change the red to what you want, mine is set to 96%:

/* This division wraps the entire forum when a forum width is set. */
div#wrapper
{
    width: 95%;
    margin: 0 auto;
}

Title: Re: Insidious II
Post by: CHRIS-7 on March 22, 2015, 09:55:19 AM
Quote from: DarkAngel612 on March 22, 2015, 09:45:38 AM
Quote from: CHRIS-7 on March 22, 2015, 09:36:14 AM
Hi Trax

I Want To Change Width My Forum In The Index.css

How To Do It?

Which Line To Change For Bigger Or Smaller Width

Find and change the red to what you want, mine is set to 96%:

/* This division wraps the entire forum when a forum width is set. */
div#wrapper
{
    width: 95%;
    margin: 0 auto;
}

Hi , DarkAngel612
No, It's not Working

Because I Found.
On Line : 3463

It's width: 1100px

#bodyarea {
padding: 5px 15px 30px;
color: #606060;
background-color: #1C1C1C;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-border-radius: 6px;
    box-shadow: inset 0 1px 2px #303030;
    -moz-box-shadow: inset 0 1px 2px #303030;
    -webkit-box-shadow: inset 0 1px 2px #303030;
    border: 1px solid #000;
}


Thanks , My Problem is Solved
Title: Re: Insidious II
Post by: The Domain Shop on March 22, 2015, 04:34:52 PM
Have you solved this?
Title: Re: Insidious II
Post by: CHRIS-7 on March 23, 2015, 09:53:12 AM
Quote from: KnownBB on March 22, 2015, 04:34:52 PM
Have you solved this?

Yes

Thanks Again For This Beautyfull Theme

;).I Use This Theme Forever
Title: Re: Insidious II
Post by: The Domain Shop on March 23, 2015, 11:37:31 AM
Quote from: CHRIS-7 on March 23, 2015, 09:53:12 AM
Quote from: KnownBB on March 22, 2015, 04:34:52 PM
Have you solved this?

Yes

Thanks Again For This Beautyfull Theme

;).I Use This Theme Forever

Glad you've sorted it and thanks for using the theme :)
Title: Re: Insidious II
Post by: DarkAngel612 on March 23, 2015, 11:53:00 AM
@KnownBB

Will you be making a responsive versio for this theme. I use it in several of our forums also and would love to have it responsive too
Title: Re: Insidious II
Post by: The Domain Shop on March 23, 2015, 04:09:54 PM
Quote from: DarkAngel612 on March 23, 2015, 11:53:00 AM
@KnownBB

Will you be making a responsive versio for this theme. I use it in several of our forums also and would love to have it responsive too

I doubt i will be making a responsive theme from my current themes due to lack of experience, once smf 2.1 is stable i'll more than likely make some new one's though :)
Title: Re: Insidious II
Post by: CHRIS-7 on March 23, 2015, 06:35:46 PM
Quote from: KnownBB on March 23, 2015, 04:09:54 PM

I doubt i will be making a responsive theme from my current themes due to lack of experience, once smf 2.1 is stable i'll more than likely make some new one's though :)

8).Wow , I'll Wait For SMF 2.1 For Install This Theme

Mr. Trax - I Did Many Change To This Theme But I Have Many Questions

Only Two Questions For You

How To Add Gender Icon To Profile Insdie Gender Text Because I'm a Rookie

Like This

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fs4.picofile.com%2Ffile%2F8178770284%2FAdd_Icon_Gender_To_Profile.JPG&hash=11e94530b7e76ec9a59835b75c9100bf00cffda8)

? ...I Must To Edit The Load.php In The Line : 1111 Or

:'(.Please Tell Me How ? I'm a Litte Angry  >:( And Spent 2 Days For This But I Couldn't

And How To Add Errorbox For Lock Topics

Like This My Friend Pedram's Forum

(https://www.simplemachines.org/community/proxy.php?request=http%3A%2F%2Fs4.picofile.com%2Ffile%2F8178770292%2FShow_ErrorBox_When_Topic_Locked.jpg&hash=0f1f033e735db88ff9cec3b123ef5c2e8d4a91a5)

Can You Help Me ? ThankS


Title: Re: Insidious II
Post by: The Domain Shop on March 25, 2015, 07:36:03 PM
I don't support customization of my themes, i'll only add support if you have problems with the theme. If you need to make changes especially to smf's php files you're better asking in the appropriate board :)
Title: Re: Insidious II
Post by: CHRIS-7 on March 25, 2015, 07:49:38 PM
Quote from: KnownBB on March 25, 2015, 07:36:03 PM
I don't support customization of my themes, i'll only add support if you have problems with the theme. If you need to make changes especially to smf's php files you're better asking in the appropriate board :)

Oh , Sorry Master

:) .Thanks For The Explain