Planet::Articles
What is mymenus module (v1.1) ?
======================
Mymenus is menu manager module that allows you to display dynamic or static menus in your website.
Features
======================
- pluggable skins (skins are menu layouts, they can be navigation menus, breadcrumbs or sitemaps)
- pluggable plugins (title and links decorators for integration of module features)
- infinite menus levels(nested menus)
- auto selected menus(menus are highlighted depending on the page you are in)
- ability to assign a menu to a smarty variable(you can use my menus has a block or use it inside your theme or templates)
- ability to get a skin from the current theme folder(theme/mytheme/menu/scripts go here)
- and much more
Requirements
====================
Requires xoops 2.4.x and php5
How to install mymenus
====================
Copy mymenus folder into the /modules directory of your website.
Log in to your site as administrator, go to System Admin > Modules, look for the mymenus icon in the list of uninstalled modules and click in the install icon.
Follow the directions in the screen and you'll be ready to go.
Usage and developing documentation
======================
Please refer to docs folder for more information.
Changelog
======================
- added plugin for displaying smarty variables.
- added plugin for displaying constants.
- image link must be a valid url, relative to root is deprecated.
Download it from google code:
http://code.google.com/p/xuups/downlo ... mod_mymenus_1.1_xuups.zip

http://www.xoops-tr.com/modules/myReviews/detailfile.php?lid=14
Or...
www.ahsapkapici.com
Sinnedesign is happy to present the new FREE XOOPS Theme with the name Sd-019-GeometricBlue.
Here can you find the
- XOOPS 2.4 Theme Demo
- XOOPS 2.5 Theme Demo
And here is the FREE
- Download Xoops Theme Sd-019-GeometricBlue
Happy XOOPSing. 
Prices for 8 Themes by IXThemes based on ixt028 Theme Framework are reduced. 
Each of 8 themes is possesses excellent properties:
- Compatible with XOOPS 2.0.1x, 2.3.x, 2.4.x, 2.5.x,
- Real LIVE DEMO on REAL VERSIONS of XOOPS 2.3.3, XOOPS 2.4.1, XOOPS 2.4.2, XOOPS 2.4.3, XOOPS 2.4.4, XOOPS 2.4.5, XOOPS 2.5.0,
- Flexible and simple adjustment of columns width according to your desire,
- Very simple replacement of an image background of header,
- Customizable Slides with 7 Scenarios,
- Roll-up blocks in Left Sidebar and Right Sidebar,
- Presets for Visibility of Roll-up Blocks,
- Customizable Expanded Footer with 4 Blocks,
- Two Control Zones for hide/show Footer and Left Sidebar or Right Sidebar,
- Customizable Expanded Header,
- Self-adjusted Horizontal Menu Bar,
- Customizable Preheader Zone,
- Customizable Concatenation of Left Sidebar and Right Sidebar,
- jQuery 1.4.2 included for old XOOPS releases,
- Customizable 1-2-3 Columns Layout,
and more...
Link to ixt028 Theme Collection:
http://ixthemes.com/modules/ps/33-ixt028-themes
Link to IXThemes Store:
http://ixthemes.com/shop/
Info:
We accept payment by CREDIT CARDS.
Minimalism is a concept that has been overused so much. And I decide to "overuse" it myself.
This is a very simple theme, I finish the coding in three hours. However it takes much more time to finish the design concept in Fireworks (CS5).
The slideshow is integrated and has a very elegant control. And blocks are displayed in strictly grid-based columns.
Screeshot
Click to enlarge
Demo & Download
Demo and Download
The two parts which you need to customize is located in tpl folder. You can add slideshow by editing slideshow.html.
License
The theme is dual licensed under GPL 2.0 and MIT licenses.
Prices for 17 Premium Themes by IXThemes based on ixt027 Theme Framework are reduced. 
Each of 17 themes is possesses excellent properties:
- Compatible with XOOPS 2.0.1x, 2.3.x, 2.4.x, 2.5.x,
- Customizable Slides with 7 Scenarios,
- Roll-up blocks in Left Sidebar and Right Sidebar,
- Presets for Visibility of Roll-up Blocks,
- Customizable Expanded Footer with 4 Blocks,
- Two Control Zones for hide/show Footer and Left Sidebar or Right Sidebar,
- Customizable Expanded Header,
- Self-adjusted Horizontal Menu Bar,
- Customizable Preheader Zone,
- Customizable Concatenation of Left Sidebar and Right Sidebar,
- jQuery 1.4.2 included for old XOOPS releases,
- Customizable 1-2-3 Columns Layout,
and more...
Link to ixt027 Theme Collection:
http://ixthemes.com/modules/ps/32-ixt027-themes
Link to IXThemes Store:
http://ixthemes.com/shop/
Info:
We accept payment by credit cards.

Theme:
Based on Theme by IXThemes ixt00208.
Modules:
impressum,
xform.
Link:
http://www.ferienwohnung-martens.de/
Info:
110+ sites powered by XOOPS are the big contribution from IXThemes in a worldwide POPULARISATION XOOPS CMS.
hello Xoopsers,
to add an attractive look to your Xoops website, it's necessary sometimes to make many hacks to some blocks, especially pictures one.
In this participation , I will let you know how to add autoscrolling jCarousel to the random horizontal block of extgallery module.
I took the effect from this website :
http://sorgalla.com/jcarousel/
and I choose the Carousel with autoscrolling.
this is an example of the effect merged with the block
http://www.mrchcenter.com/
look the scrolling picutres just above the footer
1- you can download the hack , ready to use with your theme Xoops (without making any changes to the module) from this link
2- Unzip the package and copy the content to your current theme (images, js, modules, skin.css)
3- Edit your theme.html, and in the css area , add this line :
<link rel="stylesheet" type="text/css" media="all" title="Style sheet" href="<{xoImgUrl skin.css}>" />
4- also in your theme,under :
<!-- customized header contents -->
<{$xoops_module_header}>
and before: </head>
add these lines :
<script src="<{xoImgUrl js/jquery-1.4.2.min.js}>" type="text/javascript"></script>
<script src="<{xoImgUrl js/jquery.jcarousel.min.js}>" type="text/javascript"></script>
<script type="text/javascript">
function mycarousel_initCallback(carousel)
{
// Disable autoscrolling if the user clicks the prev or next button.
carousel.buttonNext.bind('click', function() {
carousel.startAuto(0);
});
carousel.buttonPrev.bind('click', function() {
carousel.startAuto(0);
});
// Pause autoscrolling if the user moves with the cursor over the clip.
carousel.clip.hover(function() {
carousel.stopAuto();
}, function() {
carousel.startAuto();
});
};
jQuery(document).ready(function() {
jQuery('#mycarousel').jcarousel({
auto: 2,
wrap: 'last',
initCallback: mycarousel_initCallback
});
});
</script>
that's all !
now you can activate the block random pictures from your admin panel (extgallery_block_random.html)
and change the size from the skin.css, if you want.
n.b you can also choose block any where, founded by trabis to use the block wherever you want.
Regards
Buy from hi,insraq! Shop to instantly get your files
Only USD 5.5, Buy it Now!
Screenshot
Click to enlarge
"The Theme" for XOOPS
InsApp inherited nearly all of the well-received features of Inspire series themes.
1. Fancy header slider (Inherited from Inspire 10)
2. Slideshow (Inherited from Inspire 8)
3. Tabs integrated with XOOPS block system (Inherited from Inspire 1)
4. Cufon font repacement (Inherited from Inspire 10)
5. My Menus 1.0 supported (Inherited from InsAcademy)
6. Web 2.0 design (Inherited from Inspire 1)
And there are some new features:
1. Toggle-able right blocks
2. Out of box design for slideshow
3. Modern styled tab on front page
4. Featured area design
5. "Easy to maintain/modify" file structure.
6. Perfect for Web Apps or Projects
The block arrangement:
1. Slideshow --> Left blocks
( Block title --> URL to the image, 360px*360px; Block content --> Link to the image )
2. Font-page Tab --> Center bottom center blocks
(Block title --> Tab title; Block content --> Tab content )
3. Other blocks are displayed. You can see it in demo. Right blocks are toggle-able.
Demo
Demo Available
Lite version
There is a lite version available. You can download it free from this page. Demo is also available. You can compare between lite and premium.
Learn how to create a cool main menu using css 3 features.

