Page 5 of 9

Re: QuattroSimple - New custom CMSMS Theme

Posted: Fri Apr 08, 2011 10:34 am
by uniqu3
I am using detail page "News" for news summary and detail view where sidebar is turned off.
If you dont want to use detailpage but still want sidebar disabled when viewing detail post see this: http://www.i-do-this.com/blog/39/Change ... -on-Module

Re: QuattroSimple - New custom CMSMS Theme

Posted: Mon Apr 11, 2011 9:16 am
by netfied
Hi uniqu3

I have used slider on 3 sites bt i never bothered to test on IE when i did i noticed a problem with dropdown menu the active parent does not show the drop down check on www.ziarra.com and www.aeromarine.co.ke tho I will be uploading the later in about 2hrs.

wot could be the problem?

thanks

Re: QuattroSimple - New custom CMSMS Theme

Posted: Mon Apr 11, 2011 9:40 am
by uniqu3
@netfied

This is QuattroSimple theme topic and not "Edited NcleanBlue with Slider" topic (i never used standard themes and never tested these in IE).
It's CSS problem, and with saying IE you should also be more specific as IE is more than one version.
Check z-index properties in your CSS and look at QuattroSimple theme stylesheet, Dropdown works in IE.
You can also fix it with jQuery search google for "jquery z-index IE7" or something.

Re: QuattroSimple - New custom CMSMS Theme

Posted: Tue Apr 12, 2011 2:21 pm
by 14m3r
I`m a little bit customized QuattroSimple template and now i have a problem with menu. When i hovering on the link of menu, it displays only a left item of menu. Navigation section (/* NAVIGATION */) in CSS by default, theme (theme : pageNavigation) in MenuManager by default. Red arrow shows that the right element slipped down. I tried to do it on a clean template, is the same. I cant understand whats wrong..? ???

Image

Goran, help me please.

Re: QuattroSimple - New custom CMSMS Theme

Posted: Tue Apr 12, 2011 2:42 pm
by uniqu3
You have probably mixed up second level styles for a and span with current/hover style of first level.
Take original menu css and change only colors for second level, then go step by step ;) i had background-image: none; for second level.

Re: QuattroSimple - New custom CMSMS Theme

Posted: Tue Apr 12, 2011 6:39 pm
by 14m3r
I installed QuattroSimple again, but the problem with menu is still. Before i deleted all default themes. Maybe QuattroSimple have any dependencies with these styles? Or with some modules / plugins (except the slider-teaser, and news)?

Re: QuattroSimple - New custom CMSMS Theme

Posted: Tue Apr 12, 2011 8:29 pm
by uniqu3
No dependencies there, never used defaults :-)
Without seeing your actual problem, can't give much help.

Re: QuattroSimple - New custom CMSMS Theme

Posted: Sat Apr 16, 2011 9:05 am
by DADOCTOR
uniqu3 wrote:I am using detail page "News" for news summary and detail view where sidebar is turned off.
If you dont want to use detailpage but still want sidebar disabled when viewing detail post see this: http://www.i-do-this.com/blog/39/Change ... -on-Module
I still cant remove the"Navigation" from the top of the "Latest News" in the side bar

Any more ideas, I dont know what to edit

I only want the nav in the sitemap in footer

Thanks

Re: QuattroSimple - New custom CMSMS Theme

Posted: Sat Apr 16, 2011 11:58 am
by uniqu3
If you want to remove navigation from sidebar search for:

Code: Select all

{* show submenu of current page if there is one *}
         {menu template="sidebarNavigation" childrenof=$page_alias}
and remove it.

Re: QuattroSimple - New custom CMSMS Theme

Posted: Wed Apr 20, 2011 10:41 am
by uniqu3
In the core stylesheet, there is reset part, now you should either remove vertical-align:baseline; or do some styling in default stylesheet for tables.

For a structure like this or a website like yours i would rather have a look at products or cataloger modules, build templates for these and have same structure for each product/service without having to build tables every time in the wysiwyg area.

Re: QuattroSimple - New custom CMSMS Theme

Posted: Mon May 30, 2011 8:49 pm
by netfied
Goran

I had expressed interest of using the news slider effects of Quattro on BigBuzz. Unfortunately I can't find the post thats why im posting it here. but you had told me to study the Functions Scripts. I found the area controlling the news and replaced it with

Code: Select all

// Split articles
$.fn.splitUp=function(splitBy,wrapper){
    $all= $(this).find('>*');
    var fragment=Math.ceil($all.length/splitBy);
    for (i=0;i<fragment;i++)
        $all.slice(splitBy*i,splitBy*(i+1)).wrapAll(wrapper);
    return $(this);
}

$('.sidebar-news')
    .splitUp(7,'<div/>') // you can change the number 3 to any number of news you want to scroll
    .cycle({ 
    fx:     'scrollUp', 
    speed:   600, 
    timeout: 12000
    });                            
}); 
  
from Quattro Functions.js

But Nothing happens the news are not even animating aeromarine.co.ke

Re: QuattroSimple - New custom CMSMS Theme

Posted: Mon May 30, 2011 9:16 pm
by uniqu3
You should also look at the markup/template of that news template, it is not animating as js targets for class .sidebar-news but i dont see any in your source code.

You should also look at number of jquery plugins you use, wow thats allot and you use jquery twice, remove the one from bottom.
<__script__ type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jq ... "></__script>

Re: QuattroSimple - New custom CMSMS Theme

Posted: Tue May 31, 2011 8:09 am
by netfied
Sorry about that I normally work on localhost before i put my work online. I have done as you asked.

removed <__script__ type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jq ... "></__script>

Created a default newsSummary template

Code: Select all

<ul class="sidebar-news">{foreach from=$items item=entry}
<li><a href="{$entry->moreurl}" title="{$entry->title|cms_escape:htmlall}">{$entry->title|cms_escape}<br /><span>Posted {if $entry->postdate}on {$entry->postdate|cms_date_format}{/if}</span></a>
</li>
{/foreach}
</ul>
but if I put the code in the functions.js still the news dnt animate and the pictures stop sliding.

Re: QuattroSimple - New custom CMSMS Theme

Posted: Sun Jun 05, 2011 3:39 am
by DADOCTOR
Hello,

I have almost finished working on the elements for my new home page,

I want to remove the "Home" page title that is displayed in the main content area.
I have titled my home page, "Home" which is want I want, but not displayed in the content area.

I have tried to do it but I think if I do it will remove the title display of all pages and I dont want that.

I only want this done on the home page?

Can I do this?

Regards
Ryan

Re: QuattroSimple - New custom CMSMS Theme

Posted: Sun Jun 05, 2011 5:11 pm
by uniqu3
Where you have {title} (in template) or was it {$pagetitle} in quattro (dunno) simply do

Code: Select all

{if $page_alias == 'home'}
{else}
  <h1>{title}</h1> {* or {$pagetitle} whatever is there in template *}
{/if}