Posts: 1,204
Threads: 30
Joined: Jun 2010
2012-04-01, 07:42:51
(This post was last modified: 2012-08-23, 08:54:22 by BlackRose.)
Hiya
This is a support thread for BlueBusiness theme, so ask the questions here.
Short installation notes are described in extend.
Theme offers couple additional features and tweaks, like integrated slimbox effect for images, compatibility with i18n plugins (gallery, multilanguage, advanced menu, search) etc.
For all bloodthirsty demo hunters, a working example is available on getsimple template demo page.
You can download BlueBusiness theme from GS extend
Addons: blue business theme, Online Visitors, Notepad
Posts: 1
Threads: 0
Joined: Apr 2012
Hi.
I created two private pages indexbox1 and indexbox2, but they are not appeared on index page.
What happened?
What code should be inserted in the main page so that they appear?
I am not a programmer
Posts: 1,204
Threads: 30
Joined: Jun 2010
2012-04-04, 08:24:47
(This post was last modified: 2012-04-04, 08:26:38 by BlackRose.)
Ohh there's a small flaw I've found right now.
Replace template file with the one attached, and everything should work by hand.
I'll update theme package in extend soon as there are couple more improvements I've made.
Addons: blue business theme, Online Visitors, Notepad
Posts: 4
Threads: 0
Joined: Jan 2011
The header-backg.jpg disappeared when I installed 1.1. How do I enable it again? The image file is still there.
Wogew
http://www.beatlesfestival.no/cms/
Posts: 1,204
Threads: 30
Joined: Jun 2010
2012-04-11, 06:58:14
(This post was last modified: 2012-04-11, 07:10:53 by BlackRose.)
Wogew Wrote:The header-backg.jpg disappeared when I installed 1.1. How do I enable it again? The image file is still there.
I just discovered that bug. It was related to frame image, where I had to change its dimension not to let the menu overlap on the logo container. On demo page it was of course working, while package contained a working version of css file.
Try latest v1.2, as it should get rid of all bugs I found.
It has also additional improvements, and supports more plugins.
Full changelog can be found in latest news on demo page.
btw. take a closer look at the "Program 2012" unordered list on your website. It doesn't start with <ul> tag, and that's why whole list doesn't display as it should.
I'd also propose to split the content on frontpage from contentboxes by using a <hr>, and add small thumbnails to content boxes. Look at demo page
ps. let me know if you find any bugs in latest release.
Addons: blue business theme, Online Visitors, Notepad
Posts: 4
Threads: 0
Joined: Jan 2011
Posts: 8
Threads: 2
Joined: Jun 2012
Hi! I'd appreciate if you can tell me if this is possible:
I would like to have second level menus (submenus), without their parrent linking to a specific page.
For example, there is parent menu "Menu Text", and it has submenus, "Submenu 1" and "Submenu 2"; it is achieved by creating page for "Menu Text", and then nesting pages "Submenu 1" and "Submenu 2" under that page. However, I do not want page "Menu Text" to exist, I just want text to be there as first-level menu, so when it's mouse-hovered or clicked, just to display submenus.
I hope I managed to explain what I'd like to accomplish... Thanks in advance! This is really nice theme!
Posts: 1,204
Threads: 30
Joined: Jun 2010
2012-07-25, 03:32:45
(This post was last modified: 2012-07-25, 03:39:47 by BlackRose.)
strugar Wrote:Hi! I'd appreciate if you can tell me if this is possible:
I would like to have second level menus (submenus), without their parrent linking to a specific page.
This is more a question about GS and i18n plugin functionality, as it's not strictly theme related.
But there is a way to prevent a menu item from leading to its proper content. Even two ways, but I stay with simpler method as it doesn't base on javascript.
I assume you have i18n plugin installed, so:
1. add a new page, and set it as one of top lvl menu items - lets say you name it "disabledpage"
2. add as many subpages (submenu items) as you wish
3. connect through ftp to your hosting account, find the disabledpage.xml in /data/pages and edit it with a text editor (for example notepad2).
Code: Find :
<url><![CDATA[disabledpage]]></url>
change to :
<url><![CDATA[#]]></url>
Upload the file overwriting earlier version.
4. Delete /data/other/i18n_menu_cache.xml file
Refresh your page and see if everything works.
You will need to repeat whole process every time you edit and save the parent page.
ps. you can add a css rule to this specific menu item, that will prevent the cursor from being changed to "hand" when you hover the link. Just add below line to style.css around line 295
Code: nav#site-navigation > ul > li.x > a { cursor:default !important; }
edit: forgot about i18n_customfields plugin
Just read this thread: http://get-simple.info/forum/post/28867
Addons: blue business theme, Online Visitors, Notepad
Posts: 8
Threads: 2
Joined: Jun 2012
Hi, yojoe; thanks for quick feedback and thorough reply, and sorry for bringing up the issue that was not related exactly to your theme; I saw that some themes even did not support second-level menu, so I thought it was related to this theme...
However, your method did not work for me...
Seeing that there's no "native" solution to this problem, I've changed my mind, so I will not need such a behaviour; therefore, there is no need for you to deal further with this issue, but I will describe it, in case someone else comes with the similar request.
So, first of all, I could not find exact code you mentioned above; this is the entire code in my page:
Code: <?xml version="1.0" encoding="UTF-8"?>
<item><pubDate>Sat, 30 Jun 2012 23:50:28 +0200</pubDate><title>MY TITLE</title><url>my-title</url><meta/><metad/><template>template.php</template><content/><author>name-of-the-author</author><parent/><menu/><menuStatus>Y</menuStatus><private/><menuOrder><![CDATA[3]]></menuOrder></item>
So, I see here page slug between URL tags, and page order after "CDATA"; I've tried replacing one of them or both with "#", and here is the result:
- If I replace CDATA[3] with CDATA[#], page comes to the first position in menu;
- If I replace "my-title" (between url tags) with "#", page indeed does not load any longer; but its link becomes "mysite.com/#"... so when I click it, it loads home page... In addition, I get a strange row in "View all pages" section: it's empty, and there is only "+" sign at the right side; mouse hover that sign gives tooltip "Add new page: my-title", and when I click it, indeed new balnk page is created...
Adding line in style.css does not change that.
Looks like it's better to give up my idea, LOL. Anyway, thank you for efforts to help!
Posts: 2,094
Threads: 54
Joined: Jan 2011
Assuming you use the I18N plugin, you can use custom rendering for your navigation, using a component navitem like this:
Code: <li class="<?php echo $item->classes; ?>">
<?php if ($item->hasChildren) { ?>
<?php echo htmlspecialchars($item->text); ?>
<?php } else { ?>
<a href="<?php echo htmlspecialchars($item->link); ?>">
<?php echo htmlspecialchars($item->text); ?>
</a>
<?php } ?>
<?php if ($item->isOpen) { ?>
<ul><?php $item->outputChildren(); ?></ul>
<?php } ?>
</li>
and replace the navigation call in the template with:
Code: get_i18n_navigation(return_page_slug(),0,2,I18N_SHOW_MENU|I18N_FILTER_LANGUAGE,'navitem');
Posts: 1,204
Threads: 30
Joined: Jun 2010
2012-07-25, 05:36:45
(This post was last modified: 2012-07-25, 05:37:27 by BlackRose.)
You forgot about one crucial thing: http://get-simple.info/extend/plugin/i18n/69/
I wrongly assumed that you had i18n plugin already installed.
There are couple minor things I need to fix in this theme, and if there will be enough time, I might look at GS' menu_data() function. But tbh. GS has to be improved a lot in aspects of managing a nested navitagion.
And that's why I rather recommend using Mvlcek's i18n plugin, especially for multilanguage websites.
Addons: blue business theme, Online Visitors, Notepad
Posts: 8
Threads: 2
Joined: Jun 2012
yojoe Wrote:I wrongly assumed that you had i18n plugin already installed.
But yes, I had it, installed and activated!... As I said, nevermind, and thank you both, yojoe and mvlcek for help!
Posts: 1,127
Threads: 136
Joined: Feb 2012
Hi Yojoe,
Nice theme. Had a bit of trouble looking at the css in BB1.4 because it seems to be all on one line. I too have had problems with line endings in my css files. Sometimes they get double spaced and sometimes they go all on one line. Have you any idea how it happens?
Posts: 1,127
Threads: 136
Joined: Feb 2012
Timbow Wrote:Hi Yojoe,
Nice theme. Had a bit of trouble looking at the css in BB1.4 because it seems to be all on one line. I too have had problems with line endings in my css files. Sometimes they get double spaced and sometimes they go all on one line. Have you any idea how it happens?
Shawn has told me the css is 'minified'.
Posts: 1
Threads: 0
Joined: Sep 2012
I have installed the I18N Gallery plugin with the BlueBusiness theme. Is there a way to change the header background with a I18N image slideshow?
Posts: 1,204
Threads: 30
Joined: Jun 2010
You mean the glass skyscraper's photo ?
I've been thinking about implementing a slideshow script into theme, which could be maintained without additional plugins.
To add an i18n slideshow theme's code need couple fixes to provide a container, and let existing elements stay in place.
You have to edit template's code (template.php file), and change line 60 to:
Code: <img src="<?php get_theme_url(); ?>/gfx/header-frame.png" style="position:relative;z-index:5;top:0;left:0;">
<section style="width:100%;height:207px;position:absolute;top:47px;left:0;overflow:hidden;">
CALL I18N SLIDESHOW HERE
</section>
Also change line 72 to
Code: <figure id="logo" style="z-index: 5;">
and that should do.
Unfortunately I can't guarantee that embedded i18n slideshow won't behave odd, as above code adds just a place to display it.
Addons: blue business theme, Online Visitors, Notepad
Posts: 687
Threads: 63
Joined: Nov 2011
Quick question, do you have an unminified copy of the CSS file? thanks
Posts: 1,204
Threads: 30
Joined: Jun 2010
(2012-12-03, 16:37:27)shovenose Wrote: Quick question, do you have an unminified copy of the CSS file? thanks
Unfortunately not at the work :\
Try with code beautifier to get formatting asap: http://www.codebeautifier.com/
Addons: blue business theme, Online Visitors, Notepad
Posts: 687
Threads: 63
Joined: Nov 2011
It's not seeming to be working. It's not urgent so whenever you have a moment...
thanks
Posts: 4
Threads: 1
Joined: Jun 2012
Dear yojoe and Forum Members,
I will use this Bluebusiness theme, but i think horizantal size is small. Is there any solution about it? It can be full screen or larger than normal theme. On larger screen monitors it looks very narrow.
Best Regards.
Posts: 4
Threads: 1
Joined: Jun 2012
and also i want to change background. Instead of blue background i want to use different.
Posts: 1,204
Threads: 30
Joined: Jun 2010
You might change background colours in .css files.
Use firebug (in firefox or chrome) to locate certain template elements css styles.
Unfortunately this theme was designed specially as a business theme for simple websites of small companies. It doesn't support mobile nor RWD technologies.
To make it wider, you would have to change width of couple containers like #wrapper or <header>, but heade'rs frame is animg, thus you'd have to lengthen it manually.
Addons: blue business theme, Online Visitors, Notepad
Posts: 218
Threads: 59
Joined: May 2013
2016-09-14, 01:06:42
(This post was last modified: 2016-09-14, 01:08:41 by phpman.)
Hello,
i see that you made any update of the Theme now. Little question is there any posibility to make a switch inside the theme to change the "default" colors (current blue) to another one ? Like the "RA Theme" ?
You made any changes for mobile device support too ????
Posts: 58
Threads: 9
Joined: Jan 2012
Advanced HTML5 & CSS3 coder. Simple JS & PHP hacker (not enough for new function coding). Build one webpage with GS (late 2012). Focusing on Theme customizing/Template files. Experience with WP.
Posts: 1,247
Threads: 82
Joined: Feb 2011
|