Thread Rating:
  • 3 Vote(s) - 4.33 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Transverse Theme Demo
#26
Hello

Theme is very nice. I'm using it as "framework" and for testing and knowing better get-simple structure.

Questions:
* How to enable <li> in nav as active/not active?
* how to enable slideshow on homepage only?

I'm just starting get-simple, so maybe I can solve myself it, but any help will be appreciated Big Grin

Thank's!

ps. I'm working on v.1.5
Reply
#27
Great theme! I'm experimenting and tweaking it now to work best for me.

One question: what setting would I adjust to change the color of the drop-down menu? Don't want to use the black. I'm sort of inexperienced with CSS.
Reply
#28
(2012-11-01, 04:07:33)Dude Wrote: Hello

Theme is very nice. I'm using it as "framework" and for testing and knowing better get-simple structure.

Questions:
* How to enable <li> in nav as active/not active?
* how to enable slideshow on homepage only?

I'm just starting get-simple, so maybe I can solve myself it, but any help will be appreciated Big Grin

Thank's!

ps. I'm working on v.1.5


You can achieve this by adding the following to the bottom of the theme_style.inc.php just before the closing </style> Then just apply the styles you would like, underline; background; etc.

Code:
body#<?php get_page_slug(); ?> #nav li.<?php get_page_slug(); ?>{color:#FFF; text-decoration: underline; }

Each <li> is controlled by the body ID.

(2012-11-02, 12:24:14)watchsmart Wrote: Great theme! I'm experimenting and tweaking it now to work best for me.

One question: what setting would I adjust to change the color of the drop-down menu? Don't want to use the black. I'm sort of inexperienced with CSS.

In the style.css find:
Code:
nav li ul li a
{ background: #222; display:block; font-size:14px; padding: 10px 35px 10px 35px; text-transform:uppercase; width: 10em }

You can change the bg color here and apply any other additional styles or changes to the drop down.

To change the main nav bg find:
Code:
.header { background: #222;}

To change the footer bg to match the header bg find:
Code:
#footer { background: #222;}

Cheers!
Reply
#29
Hello SmashArtist,

I am new to GetSimple. I love your Transverse Theme so much. But after a day I still can not make it work properly. Please let me know how to make the slider working. I have set $slider = TRUE; but nothing happens.

Thank you very much.
Reply
#30
(2012-11-03, 03:07:09)oldbrother Wrote: Hello SmashArtist,

I am new to GetSimple. I love your Transverse Theme so much. But after a day I still can not make it work properly. Please let me know how to make the slider working. I have set $slider = TRUE; but nothing happens.

Thank you very much.


Did you setup a new component called "slider" ?
If not, do this and then to add slides simply add the code below to the new slider component with your slide images:

Code:
<li><img src="YOURSLIDE1.jpg" /></li><li><img src="YOURSLIDE2.jpg" /></li>

The slider should already be defaulted to TRUE, so you shouldn't have to make any changes to the theme settings file.
Reply
#31
I asked before (slider)

I have it TRUE and component created with slides. On page I have {% slider %} but I see only single images, no slider. Code is correct, as above. In header link to js and styles, but still not working

my code in slider <?php get_component('slider'); ?>

<li><img src="/kreatywna-section.png" /></li>
<li><img src="/prawna-section.png" /></li>
<li><img src="/biuro-section.png" /></li>

// ACTIVATE SLIDER BLOCK
$slider = TRUE;

@SmashArtist thank's for other tips, I will test it (menu)
Reply
#32
(2012-11-03, 05:01:24)Dude Wrote: I asked before (slider)

I have it TRUE and component created with slides. On page I have {% slider %} but I see only single images, no slider. Code is correct, as above. In header link to js and styles, but still not working

my code in slider <?php get_component('slider'); ?>

<li><img src="/kreatywna-section.png" /></li>
<li><img src="/prawna-section.png" /></li>
<li><img src="/biuro-section.png" /></li>

// ACTIVATE SLIDER BLOCK
$slider = TRUE;

@SmashArtist thank's for other tips, I will test it (menu)

The only thing that I can think of is another js or duplicate jquery.
Do you have any other plugins or can you PM me your testing site?

I'll be glad to take a look for you.

Your current header should have the following for the slider:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js"></script>
<script type="text/javascript" src="<?php get_theme_url(); ?>/assets/js/responsiveslides.min.js"></script>
<script type="text/javascript" src="<?php get_theme_url(); ?>/assets/js/theme_scripts.js"></script>
Reply
#33
link sended, I'm checking now my code
Reply
#34
Wink 
(2012-11-03, 05:19:42)Dude Wrote: link sended, I'm checking now my code

Just sent you pm. I hope that helps Big Grin
Reply
#35
(2012-11-03, 04:49:02)SmashArtist Wrote: Did you setup a new component called "slider" ?
If not, do this and then to add slides simply add the code below to the new slider component with your slide images:

Code:
<li><img src="YOURSLIDE1.jpg" /></li><li><img src="YOURSLIDE2.jpg" /></li>

The slider should already be defaulted to TRUE, so you shouldn't have to make any changes to the theme settings file.

Thank you! I created the components. Right now it works perfectly in IE and Chrome, but not working with Firefox. When open the site in Firefox, I can only see the left and right arrows.
Reply
#36
(2012-11-03, 06:49:20)oldbrother Wrote:
(2012-11-03, 04:49:02)SmashArtist Wrote: Did you setup a new component called "slider" ?
If not, do this and then to add slides simply add the code below to the new slider component with your slide images:

Code:
<li><img src="YOURSLIDE1.jpg" /></li><li><img src="YOURSLIDE2.jpg" /></li>

The slider should already be defaulted to TRUE, so you shouldn't have to make any changes to the theme settings file.

Thank you! I created the components. Right now it works perfectly in IE and Chrome, but not working with Firefox. When open the site in Firefox, I can only see the left and right arrows.

It looks good to me on FF v16.0.2
Reply
#37
(2012-11-03, 08:01:46)SmashArtist Wrote:
(2012-11-03, 06:49:20)oldbrother Wrote: Thank you! I created the components. Right now it works perfectly in IE and Chrome, but not working with Firefox. When open the site in Firefox, I can only see the left and right arrows.

It looks good to me on FF v16.0.2

My FF is also V16.0.2. I tried once more from scratch, but it is still not working on Firefox.

Here is what I did:

1. Installed the latest GetSimple 3.1.2
2. Installed I18N
3. Installed Transverse Theme 1.5
4. Created "slider" component, added the pictures list.

It works fine on IE and Chrome, but not working on FF. Confused

Did I miss anything?

Thank you for your help!
Reply
#38
have you tried CTRL+F5?
Reply
#39
(2012-11-03, 16:11:45)shovenose Wrote: have you tried CTRL+F5?
Tried. Stilll not working.
Reply
#40
Id like to disable the Facebook, Google, and Addthis scripts as i am not a supporter of any of these websites. To save me some time could someone tell me where they are or give me an easy way to disable them? I dont look forward to scrolling through the entire theme to find the most efficient way.
Reply
#41
Hi,

I love this theme, but I cannot get the slider to work! I have the component setup and a list of images and it is set to true in the template. Any tips?
Reply
#42
(2013-11-24, 22:40:25)michaelsage Wrote: Hi,

I love this theme, but I cannot get the slider to work! I have the component setup and a list of images and it is set to true in the template. Any tips?

Sorry, Ive been away for awhile and have been going through lots of changes business wise.

If you PM me I can take a look to see if there's any plugin conflicts or possible JS issues.
Reply




Users browsing this thread: 1 Guest(s)