Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
myApp
#1
Hi,

I've just added my first free GetSimple theme - called myApp

Demo of the theme can be found on http://myapp.pixelofficer.sk

All comments are welcome, so enjoy if you like it Smile

Download theme here
Reply
#2
PixelOfficer Wrote:Hi,

I've just added my first free GetSimple theme - called myApp

Demo of the theme can be found on http://myapp.pixelofficer.sk

All comments are welcome, so enjoy if you like it Smile
Great theme! It works for me.
I would recommend placing <?php get_footer(); ?> function in the footer.inc.php file.
Reply
#3
I'm glad you like it Smile

<?php get_footer(); ?> is included now - and new zip was already uploaded... thank you Smile
Reply
#4
One flaw is header 1 tags styling. If the h1 text is more then one line the text overlaps.
Reply
#5
Thank you Mikeh Smile

Problem has been fixed and new theme package was uploaded. I'm preparing more info about this theme, some detailed instructions how to customize it and of course - second, new theme Smile
Reply
#6
Nice job !

PixelOfficer Wrote:some detailed instructions how to customize it

Great !
Reply
#7
New version was uploaded

- includes new template with sidebar but without ilustration images

I've also created some documentation available on http://myapp.pixelofficer.sk

enjoy, and thanks for support Smile
Reply
#8
Thumbs Down 
Hi

I'm pretty new to this cms engine (this weekend)
I like this theme and i'm trying to use it... with I18N pluggin too.

One of the things i'm struggling is with the creation of drop donw menu... i can't get it to work... i made severall tries with solutions i fond here on forum but with no avail... the best i achieved is to show the below the main item the child itens but always visible... Unfortunatly i don't have now the time to go over the code to figure out one solution... there exist some simple solution, css and I18N related, i think ?

TIA

Regards

JL

[EDIT]

Kolyok member was kind enought to gime me a solution for this problem. As it can be useful for someone else i will post here their answer:

---------
Ok i checked the theme and it has no styling for multilevel navigation.
Ill show you a snippet that adds dropdown/multilevel navigation (only for one level depth)

First things first:

Open up the theme's header.inc.php and search for this:
PHP Code:
PHP Code:
<?php get_navigation(return_page_slug()); ?>
and replace it with this:
PHP Code:
PHP Code:
<?php get_i18n_navigation(return_page_slug(), 01I18N_SHOW_MENU); ?>

Now open up the theme's style.css and search for this:
PHP Code:
PHP Code:
#menu ul li {
    
floatleft;
    
padding12px 25px 13px 25px;
    
margin-bottom0px;

and replace/add this:
PHP Code:
PHP Code:
#menu ul li {
    
floatleft;
    
padding12px 25px 13px 25px;
    
margin-bottom0px;
    
positionrelative;
}

#menu ul ul {
    
display:none;
    
position:absolute;
    
margin-top13px;
    
left0;
}

#menu ul li:hover > ul {
    
displayblock;
}

#menu ul ul li {
    
backgroundurl(pics/menubg.png);
    
background-repeatrepeat-x;
    
float:none;
    
z-index:100;
}

#menu ul ul li.current {
    
backgroundurl(pics/menubg.png);
    
background-repeatrepeat-x;
    
float:none;
    
z-index:100;


Now check your menu. It should have multilevel navigation but only for one level depth.
I havent added more levels since i think its better if you practice it a little by yourself so you understand why and how it works :-)

Check/study the above codes and see if you can extend it to get a more complex menu.

------------

A great hug for him, thank you Koliok !
Reply




Users browsing this thread: 1 Guest(s)