Advertisement:

Author Topic: OverView | OverViewLight  (Read 30081 times)

Offline Bikken

  • Jr. Member
  • **
  • Posts: 154
  • Gender: Male
  • I doubt that!
    • DzinerStudio
OverView | OverViewLight
« on: October 06, 2007, 10:25:00 AM »
Link to the theme



OverView is a darker/orange looking theme for SMF. OverViewLight is a light version of this theme.

http://demo.dzinerstudio.com
« Last Edit: March 16, 2010, 08:27:41 PM by Bikken »

Offline ormuz

  • Full Member
  • ***
  • Posts: 629
Re: OverView
« Reply #1 on: October 06, 2007, 12:01:07 PM »
Great one! I love it

Offline EgArâ„¢

  • SMF Hero
  • ******
  • Posts: 1,596
  • Gender: Male
  • [=';'=]
Re: OverView
« Reply #2 on: October 06, 2007, 04:47:37 PM »
very cool

Offline dico

  • Semi-Newbie
  • *
  • Posts: 52
Re: OverView
« Reply #3 on: October 06, 2007, 07:35:47 PM »
great theme...one question

where would i go to change the bold text of any pinned topics? its hard to seperate whats pinned and what isnt

Offline Bikken

  • Jr. Member
  • **
  • Posts: 154
  • Gender: Male
  • I doubt that!
    • DzinerStudio
Re: OverView
« Reply #4 on: October 07, 2007, 12:32:40 PM »
Thanks  :)

great theme...one question

where would i go to change the bold text of any pinned topics? its hard to seperate whats pinned and what isnt

Change the colors of standard links. In style.css :

Code: [Select]
/* Normal, standard links. */
a:link
{
color: #808080;
text-decoration: none;
}
a:visited
{
color: #757575;
text-decoration: none;
}
a:hover
{
color: #ccc;
}

Offline trenchteam

  • Sr. Member
  • ****
  • Posts: 960
  • Gender: Male
    • NO WALLS STANDING
Re: OverView
« Reply #5 on: October 07, 2007, 07:45:20 PM »
Definitely a good looking theme. Would like more color variations however.  Black on Black, Grey, Dark Blue, Green....  You know?? ;D ;D

Offline dico

  • Semi-Newbie
  • *
  • Posts: 52
Re: OverView
« Reply #6 on: October 07, 2007, 09:56:19 PM »
Thanks  :)

great theme...one question

where would i go to change the bold text of any pinned topics? its hard to seperate whats pinned and what isnt

Change the colors of standard links. In style.css :

Code: [Select]
/* Normal, standard links. */
a:link
{
color: #808080;
text-decoration: none;
}
a:visited
{
color: #757575;
text-decoration: none;
}
a:hover
{
color: #ccc;
}

thnx but that'll affect the regular topic links too

i want to just target the pinned topic links

Offline Roger Rabbit

  • Semi-Newbie
  • *
  • Posts: 77
Re: OverView
« Reply #7 on: October 11, 2007, 03:58:45 AM »
can we have the .psd file for the logo please.? thanks in advance...

Offline Bikken

  • Jr. Member
  • **
  • Posts: 154
  • Gender: Male
  • I doubt that!
    • DzinerStudio
Re: OverView
« Reply #8 on: October 11, 2007, 06:10:13 PM »
Thanks  :)

great theme...one question

where would i go to change the bold text of any pinned topics? its hard to seperate whats pinned and what isnt

Change the colors of standard links. In style.css :

Code: [Select]
/* Normal, standard links. */
a:link
{
color: #808080;
text-decoration: none;
}
a:visited
{
color: #757575;
text-decoration: none;
}
a:hover
{
color: #ccc;
}

thnx but that'll affect the regular topic links too

i want to just target the pinned topic links

What you can do is upload a copy of MessageIndex.template file from your default theme in OverView folder. Then open the file and search for this (around line 214):

Code: [Select]
</td>
<td class="windowbg' , !empty($settings['seperate_sticky_lock']) && $topic['is_sticky'] ? '3' : '' , '" valign="middle" ', (!empty($topic['quick_mod']['remove']) ? 'id="topic_' . $topic['first_post']['id'] . '" onmouseout="mouse_on_div = 0;" onmouseover="mouse_on_div = 1;" ondblclick="modify_topic(\'' . $topic['id'] . '\', \'' . $topic['first_post']['id'] . '\', \'' . $context['session_id'] . '\');"' : ''), '>';

and replace with (or just change the "3" to "4"):
Code: [Select]
</td>
<td class="windowbg' , !empty($settings['seperate_sticky_lock']) && $topic['is_sticky'] ? '4' : '' , '" valign="middle" ', (!empty($topic['quick_mod']['remove']) ? 'id="topic_' . $topic['first_post']['id'] . '" onmouseout="mouse_on_div = 0;" onmouseover="mouse_on_div = 1;" ondblclick="modify_topic(\'' . $topic['id'] . '\', \'' . $topic['first_post']['id'] . '\', \'' . $context['session_id'] . '\');"' : ''), '>';

Then add this somewhere in your style.css:
Code: [Select]
.windowbg4
{
padding: 5px;
background-color: yellow;
}
.windowbg4 a:link
{
      color: red;
}

Change colors to whatever you like.

Offline Bikken

  • Jr. Member
  • **
  • Posts: 154
  • Gender: Male
  • I doubt that!
    • DzinerStudio
Re: OverView
« Reply #9 on: October 11, 2007, 06:18:28 PM »
can we have the .psd file for the logo please.? thanks in advance...

I uploaded the logo.zip to the theme downloads on this site.

Offline Sulgicur

  • Semi-Newbie
  • *
  • Posts: 41
Re: OverView
« Reply #10 on: October 17, 2007, 02:50:26 PM »
This is a fabulous theme. One question > how do I expand the width of the forum itself. A lot of my members are complaining that the margins are too large.

Thanks!

Offline Bikken

  • Jr. Member
  • **
  • Posts: 154
  • Gender: Male
  • I doubt that!
    • DzinerStudio
Re: OverView
« Reply #11 on: October 17, 2007, 07:13:36 PM »
Hi, you can change the width in style.css. Search for this:
Code: [Select]
div#container
{
width:950px;
margin:0px auto 20px auto;
}

and change 950px to what you like. Use either px or %.

Offline Sulgicur

  • Semi-Newbie
  • *
  • Posts: 41
Re: OverView
« Reply #12 on: October 22, 2007, 02:48:23 AM »
Ok, I got there but not using that method. I did something with padding in the style script, I think. God knows.

Anyway, one last thing to make it all together ace would be to align the logo right and the login and welcome to the left. I've tried changing the alignment in the style.css and all though it looks fine in the preview, it doesn't then translate on to the forum itself. Any ideas?

Thanks a lot!

Offline m@d

  • Semi-Newbie
  • *
  • Posts: 10
  • Gender: Male
Re: OverView
« Reply #13 on: October 31, 2007, 07:18:03 AM »
I like this theme, but i have got a bug in IE6 in bottom right and header right.

Here is a screen from the bottom right

[nofollow]

In firefox2 there is such no Problem

Offline Phil Serna

  • Jr. Member
  • **
  • Posts: 265
    • www.misc-content.com
Re: OverView
« Reply #14 on: October 31, 2007, 09:25:23 AM »
Nice theme.

I would like to use it, but also wanna include the tinyportal. How do i do this?
« Last Edit: October 31, 2007, 09:32:50 AM by Phil Serna »
www.misc-content.com
Helping you get through your work day.

Offline nick09

  • Full Member
  • ***
  • Posts: 429
Re: OverView
« Reply #15 on: October 31, 2007, 05:01:03 PM »
Nice theme.

I would like to use it, but also wanna include the tinyportal. How do i do this?

you have to install tinyportal.

but i don't know where to get it though sorry.

Offline Phil Serna

  • Jr. Member
  • **
  • Posts: 265
    • www.misc-content.com
Re: OverView
« Reply #16 on: November 03, 2007, 07:41:25 PM »
^ Getting the help now. Thanks for the reply.

-Phil.
www.misc-content.com
Helping you get through your work day.

Offline Bikken

  • Jr. Member
  • **
  • Posts: 154
  • Gender: Male
  • I doubt that!
    • DzinerStudio
Re: OverView
« Reply #17 on: November 05, 2007, 08:07:47 PM »
m@d, did you edit the theme or something? I don't see such an error in IE 6.

Offline m@d

  • Semi-Newbie
  • *
  • Posts: 10
  • Gender: Male
Re: OverView
« Reply #18 on: November 15, 2007, 09:10:05 AM »
No dont edit something in the theme
« Last Edit: November 15, 2007, 09:34:49 AM by m@d »

Offline LinkinParkBoy

  • Jr. Member
  • **
  • Posts: 155
Re: OverView
« Reply #19 on: November 18, 2007, 06:57:25 AM »
I installed the mods Smf Arcade 2.0.11 and the User Control painel in this Theme Overview

But when i want put them working, dont show the left and right blocs on Tiny Portal, only shows the article in the middle. Why?  :'(


Ty  :)