Welcome to Geeklog, Anonymous Thursday, November 28 2024 @ 01:53 am EST
Geeklog Forums
Mind Break theme for Geeklog
Page navigation
Status: offline
geiss
Forum User
Full Member
Registered: 02/10/04
Posts: 176
Location:Boise, Idaho
Mind Break is a fixed width, 3 column layout theme I ported with permission from its author at http://www.theme-time.com. I found it interesting because it places both left and right blocks to the right of the main story column. It is meant for 1024x768 and higher screen resolutions. Please see the enclosed README file for more info. See it in action on my test site, lab.familycorner.us
You can download it at gllabs.org or geeklog.net.
Support thread located at gllabs.org.
Synergy - Stability - Style --- Visit us at glfusion.org
You can download it at gllabs.org or geeklog.net.
Support thread located at gllabs.org.
Synergy - Stability - Style --- Visit us at glfusion.org
38
27
Quote
ironmax
Anonymous
You can now see it in action along with all the other themes over on the demo site.
Michael
Michael
28
31
Quote
Status: offline
nobese
Forum User
Chatty
Registered: 01/20/06
Posts: 44
ı install mind break theme on my site...
also my site has media gallery and also ramdom image block
but when browse taht site with firefox, random image block can't showen by bowser even internet explorer has no any problem to show randıom image
to see please:
http://anonimsinema.net/hm141/
is there any idea for the solve?
also my site has media gallery and also ramdom image block
but when browse taht site with firefox, random image block can't showen by bowser even internet explorer has no any problem to show randıom image
to see please:
http://anonimsinema.net/hm141/
is there any idea for the solve?
25
35
Quote
Status: offline
geiss
Forum User
Full Member
Registered: 02/10/04
Posts: 176
Location:Boise, Idaho
nobese,
First, thank you for downloading the Mind Break theme. It's great to see the port in action!
I was able to duplicate your problems on my test site with the Firefox 2 browser. The problems do not exist when using IE7. It is normally my policy not to provide support for 3rd party plugins that don't use the standard GL style.css for layout :rtfm:, ...but since I have a soft spot in my heart for Mark and all his hard work on Media Gallery, I started sifting thru the mediagallery.css stylesheet located at {public_html}/mediagallery/mediagallery.css and made the following change around line 53:
* control the frames on images
*/
.mgPluginMI {
padding:0 !important;
}
I added the clear property:
* control the frames on images
*/
.mgPluginMI {
padding:0 !important;
clear:both;
}
That fixed it for me in Firefox, and IE7 still renders fine.
Hope this helps!
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
First, thank you for downloading the Mind Break theme. It's great to see the port in action!
I was able to duplicate your problems on my test site with the Firefox 2 browser. The problems do not exist when using IE7. It is normally my policy not to provide support for 3rd party plugins that don't use the standard GL style.css for layout :rtfm:, ...but since I have a soft spot in my heart for Mark and all his hard work on Media Gallery, I started sifting thru the mediagallery.css stylesheet located at {public_html}/mediagallery/mediagallery.css and made the following change around line 53:
Text Formatted Code
/* Do not change the MI classes, they are used to help* control the frames on images
*/
.mgPluginMI {
padding:0 !important;
}
I added the clear property:
Text Formatted Code
/* Do not change the MI classes, they are used to help* control the frames on images
*/
.mgPluginMI {
padding:0 !important;
clear:both;
}
That fixed it for me in Firefox, and IE7 still renders fine.
Hope this helps!
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
38
31
Quote
Status: offline
geiss
Forum User
Full Member
Registered: 02/10/04
Posts: 176
Location:Boise, Idaho
try changing line 2 in {public_html}/layout/mind-break/forum/layout/blocks/latestpostsblock.thtml from:
to:
Thx!
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
Text Formatted Code
<table width="100%" border="0" cellpadding="1" cellspacing="1">to:
Text Formatted Code
<table style="clear:both;" width="100%" border="0" cellpadding="1" cellspacing="1">Thx!
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
27
30
Quote
sunny
Anonymous
i am facing trouble with Mind-Break
1. The Preferences tab under the User Functions cannot be saved
2. The No of Hits are not shown along with the Story. its only seen when in edit mode.
3. The site slogan default colour is too light to be seen over the background properly. Need help to change the colour.
but still better than the default theme
1. The Preferences tab under the User Functions cannot be saved
2. The No of Hits are not shown along with the Story. its only seen when in edit mode.
3. The site slogan default colour is too light to be seen over the background properly. Need help to change the colour.
but still better than the default theme
32
29
Quote
Status: offline
geiss
Forum User
Full Member
Registered: 02/10/04
Posts: 176
Location:Boise, Idaho
Hi Sunny,
Thx for using the Mind Break theme! If you wouldn't mind posting a link to your site, I would love to see it in action.
In response to:
1. The Preferences tab under the User Functions cannot be saved
There is no Preferences tab that I can find. I've checked the functionality of Username & Password, About You, Layout & Language, Content, and Privacy. All work fine for me. I doubt the issue you are having is theme related. But if you can give me more info on where exactly you are getting the error, we might be able to uncover a little more.
2. The No of Hits are not shown along with the Story. its only seen when in edit mode.
The number of hits was removed as a design choice to more closely resemble the original Mind Break theme. Feel free to add it back in by adding the following code to featuredstorytext.thtml and storytext.thtml:
so, for example featuredstorytext.thtml would look like this:
<!--all divs in this file are self-contained-->
<div class="post">
<span class="story-icons">
{email_icon} {print_icon} {pdf_icon}
</span>
<h2>{start_storylink_anchortag}{story_title}{end_storylink_anchortag}</h2>
<div class="post-info">
{story_date}<br /> {lang_contributed_by} {start_contributedby_anchortag}{contributedby_author}{end_contributedby_anchortag}<br /> {lang_views} {story_hits}
</div>
<div class="entry">
{story_anchortag_and_image}{story_introtext}
</div>
<div style="clear:both;"></div>
<div class="postmetadata">
{edit_link} {page_selector} {readmore_link}<br /> <img src="{layout_url}/images/comments.gif" style="vertical-align:middle;"> {post_comment_link} {start_comments_anchortag}{comments_with_count}{end_comments_anchortag} {start_trackbacks_anchortag}{trackbacks_with_count}{end_trackbacks_anchortag}
</div>
</div>
3. The site slogan default colour is too light to be seen over the background properly. Need help to change the colour.
In the theme's style.css file, find:
color:#f6e3bb;
font-size: 12px;
line-height: 14px;
font-weight: normal;
letter-spacing: 0px;
font-family:Verdana, Arial, Helvetica, sans-serif;
padding: 0px;
margin: 2px 0px 0px 30px;
and change the color according to your needs.
Hope this helps!
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
Thx for using the Mind Break theme! If you wouldn't mind posting a link to your site, I would love to see it in action.
In response to:
1. The Preferences tab under the User Functions cannot be saved
There is no Preferences tab that I can find. I've checked the functionality of Username & Password, About You, Layout & Language, Content, and Privacy. All work fine for me. I doubt the issue you are having is theme related. But if you can give me more info on where exactly you are getting the error, we might be able to uncover a little more.
2. The No of Hits are not shown along with the Story. its only seen when in edit mode.
The number of hits was removed as a design choice to more closely resemble the original Mind Break theme. Feel free to add it back in by adding the following code to featuredstorytext.thtml and storytext.thtml:
Text Formatted Code
{lang_views} {story_hits}so, for example featuredstorytext.thtml would look like this:
Text Formatted Code
<!--all divs in this file are self-contained-->
<div class="post">
<span class="story-icons">
{email_icon} {print_icon} {pdf_icon}
</span>
<h2>{start_storylink_anchortag}{story_title}{end_storylink_anchortag}</h2>
<div class="post-info">
{story_date}<br /> {lang_contributed_by} {start_contributedby_anchortag}{contributedby_author}{end_contributedby_anchortag}<br /> {lang_views} {story_hits}
</div>
<div class="entry">
{story_anchortag_and_image}{story_introtext}
</div>
<div style="clear:both;"></div>
<div class="postmetadata">
{edit_link} {page_selector} {readmore_link}<br /> <img src="{layout_url}/images/comments.gif" style="vertical-align:middle;"> {post_comment_link} {start_comments_anchortag}{comments_with_count}{end_comments_anchortag} {start_trackbacks_anchortag}{trackbacks_with_count}{end_trackbacks_anchortag}
</div>
</div>
3. The site slogan default colour is too light to be seen over the background properly. Need help to change the colour.
In the theme's style.css file, find:
Text Formatted Code
.Header .Desc { color:#f6e3bb;
font-size: 12px;
line-height: 14px;
font-weight: normal;
letter-spacing: 0px;
font-family:Verdana, Arial, Helvetica, sans-serif;
padding: 0px;
margin: 2px 0px 0px 30px;
and change the color according to your needs.
Hope this helps!
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
35
31
Quote
Status: offline
d404
Forum User
Chatty
Registered: 01/21/05
Posts: 41
please can you give us ( refresh ) them that u had been ported from styleshout.com
and this is exampel
http://www.styleshout.com/templates/preview/Envision1-0/index.html?PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
and this for download
http://www.styleshout.com/hits.php?type=tmp&id=13&url=templates/downloads/Envision1-0.zip&PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
thank's
and this is exampel
http://www.styleshout.com/templates/preview/Envision1-0/index.html?PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
and this for download
http://www.styleshout.com/hits.php?type=tmp&id=13&url=templates/downloads/Envision1-0.zip&PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
thank's
39
23
Quote
d404,
The Refresh theme port I've been working on is on its way. I've had family in town the last few days which hasn't left me much of time to work on themes, but hopefully by this weekend it should be ready.
The Refresh theme was done for a step-by-step tutorial on How to Port a Theme, Mark (of Media Gallery plugin fame) and I have been working on over at http://gllabs.org. Take a look at it there, as the one that you referenced in
is slightly different. It's called Envision, instead of Refresh. Let me know which one you are wanting exactly. I don't know if I have the resources to start taking theme requests just yet, but would be happy to help you out since the two themes are almost identical.
Thanks for your interest in my work! Mark and I are also working on a visual theme switcher plugin (so instead of just a text only drop-down theme chooser list in a block, it will be similar to a static page with screenshots of each of the themes available.) Feel free to add your input for that project in this forum thread.
Finally, please feel free to check out my other theme ports at http://lab.familycorner.us
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
The Refresh theme port I've been working on is on its way. I've had family in town the last few days which hasn't left me much of time to work on themes, but hopefully by this weekend it should be ready.
The Refresh theme was done for a step-by-step tutorial on How to Port a Theme, Mark (of Media Gallery plugin fame) and I have been working on over at http://gllabs.org. Take a look at it there, as the one that you referenced in
and this is exampel
http://www.styleshout.com/templates/preview/Envision1-0/index.html?PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
and this for download
http://www.styleshout.com/hits.php?type=tmp&id=13&url=templates/downloads/Envision1-0.zip&PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
http://www.styleshout.com/templates/preview/Envision1-0/index.html?PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
and this for download
http://www.styleshout.com/hits.php?type=tmp&id=13&url=templates/downloads/Envision1-0.zip&PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
is slightly different. It's called Envision, instead of Refresh. Let me know which one you are wanting exactly. I don't know if I have the resources to start taking theme requests just yet, but would be happy to help you out since the two themes are almost identical.
Thanks for your interest in my work! Mark and I are also working on a visual theme switcher plugin (so instead of just a text only drop-down theme chooser list in a block, it will be similar to a static page with screenshots of each of the themes available.) Feel free to add your input for that project in this forum thread.
Finally, please feel free to check out my other theme ports at http://lab.familycorner.us
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
25
35
Quote
Status: offline
spockjuh
Forum User
Junior
Registered: 06/30/04
Posts: 32
hi, i really like your theme, my compliments!! at this moment i'm just facing one problem, a problem that's gonna mess up the lay out a little bit... the only thing that i want to change is this.
at this moment i'm working met the xsilver theme (left and right menu) see it at www.agovvapeldoorn.com . in your theme both menu's are situated at the right site. is it possible to migrate the first menu back to the left site ? i need this change because i know when im going to use the orginal theme that i;'m going to loose visitors.
can you help me with this?
Gr
at this moment i'm working met the xsilver theme (left and right menu) see it at www.agovvapeldoorn.com . in your theme both menu's are situated at the right site. is it possible to migrate the first menu back to the left site ? i need this change because i know when im going to use the orginal theme that i;'m going to loose visitors.
can you help me with this?
Gr
33
32
Quote
Status: offline
geiss
Forum User
Full Member
Registered: 02/10/04
Posts: 176
Location:Boise, Idaho
I'm not entirely sure what you are asking for, but you can move the blocks around and re-order them via the Geeklog blocks admin panel.
As far as moving the entire left block column to the left of the story column, I'm afraid it would require some major tweaking. The left block column is created with a repeating background picture, so you would need to modify that image file (basically flip it 180 degrees), and them move the {left_blocks} variable and its <div> code back into header.thtml before the story content area.
Hope this helps!
Thx!
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
As far as moving the entire left block column to the left of the story column, I'm afraid it would require some major tweaking. The left block column is created with a repeating background picture, so you would need to modify that image file (basically flip it 180 degrees), and them move the {left_blocks} variable and its <div> code back into header.thtml before the story content area.
Hope this helps!
Thx!
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
39
33
Quote
Status: offline
geiss
Forum User
Full Member
Registered: 02/10/04
Posts: 176
Location:Boise, Idaho
Look for {left_blocks} and {right_blocks} variables in (public_html)/layout/mind-break/footer.thtml, you will want to move either of those to (public_html)/layout/mind-break/header.thtml.
The image file you will want to flip is (public_html)/layout/mind-break/images/nav-ol-blue.gif.
The main backround image is (public_html)/layout/mind-break/images/BGC.gif
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
The image file you will want to flip is (public_html)/layout/mind-break/images/nav-ol-blue.gif.
The main backround image is (public_html)/layout/mind-break/images/BGC.gif
-Eric
Synergy - Stability - Style --- Visit us at glfusion.org
27
35
Quote
Status: offline
d404
Forum User
Chatty
Registered: 01/21/05
Posts: 41
Quote by: geiss
is slightly different. It's called Envision, instead of Refresh. Let me know which one you are wanting exactly. I don't know if I have the resources to start taking theme requests just yet, but would be happy to help you out since the two themes are almost identical.
Thanks for your interest in my work! Mark and I are also working on a visual theme switcher plugin (so instead of just a text only drop-down theme chooser list in a block, it will be similar to a static page with screenshots of each of the themes available.) Feel free to add your input for that project in this forum thread.
Finally, please feel free to check out my other theme ports at http://lab.familycorner.us
-Eric
d404,
The Refresh theme port I've been working on is on its way. I've had family in town the last few days which hasn't left me much of time to work on themes, but hopefully by this weekend it should be ready.
The Refresh theme was done for a step-by-step tutorial on How to Port a Theme, Mark (of Media Gallery plugin fame) and I have been working on over at http://gllabs.org. Take a look at it there, as the one that you referenced in
and this is exampel
http://www.styleshout.com/templates/preview/Envision1-0/index.html?PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
and this for download
http://www.styleshout.com/hits.php?type=tmp&id=13&url=templates/downloads/Envision1-0.zip&PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
http://www.styleshout.com/templates/preview/Envision1-0/index.html?PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
and this for download
http://www.styleshout.com/hits.php?type=tmp&id=13&url=templates/downloads/Envision1-0.zip&PHPSESSID=5187327f5d3a8f6ec2cad7d6aaf14e62
is slightly different. It's called Envision, instead of Refresh. Let me know which one you are wanting exactly. I don't know if I have the resources to start taking theme requests just yet, but would be happy to help you out since the two themes are almost identical.
Thanks for your interest in my work! Mark and I are also working on a visual theme switcher plugin (so instead of just a text only drop-down theme chooser list in a block, it will be similar to a static page with screenshots of each of the themes available.) Feel free to add your input for that project in this forum thread.
Finally, please feel free to check out my other theme ports at http://lab.familycorner.us
-Eric
Eric , i whant to say THANK'S ALOT MAN ...
Your helpful 4 every one here ...
33
37
Quote
Sunny
Anonymous
Hi there
Thx for the reply above. I saw it pretty late it seems. However i solved the issues myself.
1. The missing save button while editing the user preferences.
2. The Hits counter
i Simply copied the required files from the professional theme folder. And replaced it in the Mind-Break folder.
1. However i need help with how to add Meta Data in geeklog
2. I want to rename the Calendar tab to "Shop" and redirect it to the shopping section (i.e. another site)
3. i want to add an extra tab next to Calendar redirecting to some other site.
My site is geeks.onlygizmos.com
am reachable on admin@onlygizmos.com
i have done some other editing like enabling the Rich text editor under Story Editor.
But i want to enable some more fonts, enable coloured fonts, enable script in between story (to add adsense code). Enable embedded videos from youtube etc...
However even as it is i am pretty happy with Geeklog as its a great site. Thx fro the great support.
Thx for the reply above. I saw it pretty late it seems. However i solved the issues myself.
1. The missing save button while editing the user preferences.
2. The Hits counter
i Simply copied the required files from the professional theme folder. And replaced it in the Mind-Break folder.
1. However i need help with how to add Meta Data in geeklog
2. I want to rename the Calendar tab to "Shop" and redirect it to the shopping section (i.e. another site)
3. i want to add an extra tab next to Calendar redirecting to some other site.
My site is geeks.onlygizmos.com
am reachable on admin@onlygizmos.com
i have done some other editing like enabling the Rich text editor under Story Editor.
But i want to enable some more fonts, enable coloured fonts, enable script in between story (to add adsense code). Enable embedded videos from youtube etc...
However even as it is i am pretty happy with Geeklog as its a great site. Thx fro the great support.
22
30
Quote
Sunny
Anonymous
I am also hoping to add a About Me page to the site. Is there any way i can make it with the same design as the theme.
Also there is an issue with the search tab.
The same appears and works fine when on the homepage. However the same gets dislocated at certain times ...
Also there is an issue with the search tab.
The same appears and works fine when on the homepage. However the same gets dislocated at certain times ...
38
25
Quote
Page navigation
All times are EST. The time is now 01:53 am.
- Normal Topic
- Sticky Topic
- Locked Topic
- New Post
- Sticky Topic W/ New Post
- Locked Topic W/ New Post
- View Anonymous Posts
- Able to post
- Filtered HTML Allowed
- Censored Content