Forums » Customize

Ironing out a few problems...

Rockastyle
UNITED KINGDOM
2010-03-09 09:27:09
Permalink Post
 

Hey there everyone,

My sites nearly done I just need to fix a couple of problems with my website, I have used the search button to no avail so hopefully you can help. I am using the columner theme along with the expanding menu.

1. I have a problem on this page prints-for-sale, I have used the iframed plugin and have been able to set the width but as you can see the height is messed up, any idea whats wrong?

2. Regarding the navigation, I would like the menu to close after I have clicked whatever page I am visiting, at the moment it stays open after clicking, Any solutions?

That is all,
Thank you very much,
Wesley.

Wesley Stanford | Photography

Rockastyle
UNITED KINGDOM
2010-03-09 10:11:19
Permalink Post
 

The 1st point has been solved just need help regrding the navigation now,
Thank you.

arsondpi A
GREECE
2010-03-09 11:34:48
Permalink Post
 

find this in your expanding menu

  1. ¬†¬†¬†¬†/* hide items if not active */
  2. ¬†¬†¬†¬†if (items.is(".active") == false) {
  3.         items.hide();
  4.     }

and change to this

  1. ¬†¬†¬†¬†/* hide items  */
  2.     items.hide();
Rockastyle
UNITED KINGDOM
2010-03-10 04:15:19
Permalink Post
 

I tried what you said arsondpi but all that did was show all the contents of the menus.

In the end I fixed it by changing it from...

  1. # /* hide items if not active */
  2. #     if (items.is(".active") == false) {
  3. #         items.hide();
  4. #     }

To....

  1. # /* hide items if not active */
  2. #     if (items.is() == false) {
  3. #         items.hide();
  4. #     }

Hope that helps for anyone else with the same problem.

Rockastyle
UNITED KINGDOM
2010-03-10 04:27:28
Permalink Post
 

One other problem,
On my about page HERE the background image starts from around 200px to the left instead of 0, does anyone know how to fix this?

Thanks.

Vaska A
UNITED STATES
2010-03-10 09:56:03
Permalink Post
 

Yep, the plugin does that automatically...you just need to edit the 'backgrounder' plugin found in /ndxz-studio/site/plugin/index.php

arsondpi A
GREECE
2010-03-10 09:58:19
Permalink Post
 

oops....

Anyhow - the background can be changed to in the index.php file found in the plugin folder...
Find this line:

$style .= ($img != '') ? "\nbackground-image: url(".BASEURL."/files/$img);\nbackground-repeat: $tile;\nbackground-position: 215px 0;\nbackground-attachment: fixed;\n" : '';

and change it to

$style .= ($img != '') ? "\nbackground-image: url(".BASEURL."/files/$img);\nbackground-repeat: $tile;\nbackground-position: 0 0;\nbackground-attachment: fixed;\n" : '';

Rockastyle
UNITED KINGDOM
2010-03-10 11:00:03
Permalink Post
 

That worked perfectly, thank you so much!

Showing 1 - 8 of 8 posts in Forum > Customize > Ironing out a few problems...
 

You need to be logged in to post.