SimplePortal

Customization => Themes and Graphics => Topic started by: steve51184 on February 10, 2010, 05:58:00 PM

Title: move the 'breadcrumb' menu back under the forums blocks?
Post by: steve51184 on February 10, 2010, 05:58:00 PM
not really sure how to describe this so i'll do it with images..

smf 2.0 rc2 without simpleportal:

(http://i50.tinypic.com/168a7pi.png) (http://i50.tinypic.com/168a7pi.png)

after with simpleportal:

(http://i50.tinypic.com/11lrjio.png) (http://i50.tinypic.com/11lrjio.png)

i'd like to know how to put the menu back above the topic and not the 'blocks'

thanks
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: Nathaniel on February 17, 2010, 09:45:40 PM
Here are some edits:

Code: ("Find (Themes/default/index.template.php)") [Select]
// Show the navigation tree.
theme_linktree();

Code: ("Replace") [Select]
// Show the navigation tree.
if (!empty($context['disable_sp']))
theme_linktree();

Code: ("Find (Themes/default/Portal.template.php)") [Select]
}

function template_portal_below()

Code: ("Replace") [Select]
theme_linktree();
}

function template_portal_below()
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: steve51184 on February 19, 2010, 11:27:25 AM
that code just doubled the shoutbox and made my fonts all weird :\
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: [SiNaN] on February 27, 2010, 06:06:47 AM
Well, there is simply no way that edit would cause that and it works perfectly. Revert your changes back and attach your files here. I can apply the edits for you.
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: steve51184 on February 27, 2010, 08:31:57 AM
Well, there is simply no way that edit would cause that and it works perfectly. Revert your changes back and attach your files here. I can apply the edits for you.

i know how to make edits lol
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: [SiNaN] on March 09, 2010, 12:05:59 PM
I'm sure you do. It's just that we miss stuff sometimes. Try the attached files.
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: MultiformeIngegno on March 09, 2010, 12:36:47 PM
I'm sure you do. It's just that we miss stuff sometimes. Try the attached files.
Please can you post also the manual edits..? I've modified my index.template.php and I can't upload yours....
Thanks!!!!
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: [SiNaN] on March 09, 2010, 12:39:37 PM
They are here:

http://simpleportal.net/index.php?topic=4612.msg28519#msg28519
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: steve51184 on March 09, 2010, 12:55:25 PM
I'm sure you do. It's just that we miss stuff sometimes. Try the attached files.

still same error
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: [SiNaN] on March 09, 2010, 12:57:04 PM
Any chance I see the issue myself? I can't comment on without seeing the HTML source.
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: steve51184 on March 09, 2010, 01:12:13 PM
Any chance I see the issue myself? I can't comment on without seeing the HTML source.

sent you a pm with the link

and as you can see all the text is huge and the shoutbox has been doubled... very weird...

also note the error at the bottom:

Quote
Unable to load the 'portal_below' template.
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: MultiformeIngegno on March 09, 2010, 02:34:17 PM
They are here:

http://simpleportal.net/index.php?topic=4612.msg28519#msg28519
They don't work for me.... they just increase the font-size (a tag not closed...) and let disappear the central blocks in my standalone portal..... :0
If I remove those edits all is fixed!
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: steve51184 on March 09, 2010, 02:38:40 PM
same problem i'm having so thanks for confirming it doesn't work :P
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: [SiNaN] on March 10, 2010, 05:00:53 AM
I have updated the post by Nath (http://simpleportal.net/index.php?topic=4612.msg28519#msg28519); can you try it again?
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: steve51184 on March 10, 2010, 05:08:07 AM
I have updated the post by Nath (http://simpleportal.net/index.php?topic=4612.msg28519#msg28519); can you try it again?

yep that seems to be working now but it doesn't look that nice...

here's a before pic:

(http://i44.tinypic.com/k06a04.png) (http://i44.tinypic.com/k06a04.png)


here's an after pic:

(http://i43.tinypic.com/af7tcy.png) (http://i43.tinypic.com/af7tcy.png)

as you can see the shoutbox (named 'untitled' on my test forum) is a little to close to the menu and there's also a blank space...
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: [SiNaN] on March 10, 2010, 05:09:59 AM
How do you want it to look like exactly? Would removing the padding and line above be good enough?
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: steve51184 on March 10, 2010, 05:12:06 AM
How do you want it to look like exactly? Would removing the padding and line above be good enough?

i've just updated my last post answering your question...

but yes the padding and line being removed would look nice :)
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: [SiNaN] on March 10, 2010, 05:22:30 AM
Themes/default/css/index.css

Code: (Find) [Select]
.navigate_section
{
overflow: hidden;
margin: 0;
padding: 0.5em;
margin: 1em 0 0 0;
}
.navigate_section ul
{
display: block;
margin: 0;
font-size: 0.9em;
padding: 1em 0 0.5em 0;
border-top: solid #ccc 1px;
}

Code: (Replace) [Select]
.navigate_section
{
overflow: hidden;
margin: 0;
padding: 0.5em;
padding-top: 0;
}
.navigate_section ul
{
display: block;
margin: 0;
font-size: 0.9em;
padding: 0;
}
Title: Re: move the 'breadcrumb' menu back under the forums blocks?
Post by: steve51184 on March 10, 2010, 05:29:58 AM
perfect ty

(http://i43.tinypic.com/fcs8hs.png) (http://i43.tinypic.com/fcs8hs.png)
SimplePortal 2.3.8 © 2008-2024, SimplePortal