Search found 82 matches

by Stom
Sun Jan 17, 2010 12:20 pm
Forum: Modules/Add-Ons
Topic: [SOLVED] NMS, .htaccess, mod_rewrite and confirmation emails
Replies: 2
Views: 1234

Re: NMS, .htaccess, mod_rewrite and confirmation emails

*bump*

I'm still having some issues with this.

I should point out that I have pretty url's enabled and mod_rewrite.

There doesn't seem to be any difference in the structure of the confirmation url generated, only the unique id. Some of them cause the 500 server error, others work perfectly.
by Stom
Wed Jan 06, 2010 12:20 pm
Forum: Modules/Add-Ons
Topic: [SOLVED] NMS, .htaccess, mod_rewrite and confirmation emails
Replies: 2
Views: 1234

[SOLVED] NMS, .htaccess, mod_rewrite and confirmation emails

I'm using the following: CMS Version 1.6.6 CMSMailer 1.73.14 CGExtensions 1.17.6 NMS 2.2.3 I've got my NMS installed and users can join a mailing list. The confirmation email is delivered successfully but when I click the confirmurl I'm usually presented with an "Internal Server Error 500"...
by Stom
Thu Oct 22, 2009 6:14 pm
Forum: Modules/Add-Ons
Topic: Hierarchical menus in Product module
Replies: 3
Views: 1461

Re: Hierarchical menus in Product module

My tag? Do you mean the method/parameters I'm using to call the module?
by Stom
Thu Oct 22, 2009 6:13 pm
Forum: Layout and Design (CSS & HTML)
Topic: Navigation Simple Horizontal individual colours
Replies: 10
Views: 3711

Re: Navigation Simple Horizontal individual colours

Yes, the attribute need to be within the element tag, otherise your code is broken.


- not -
class="foo"

See herefor more info on css classes :)
by Stom
Thu Oct 22, 2009 6:10 pm
Forum: Modules/Add-Ons
Topic: Products module and adding hierarchy tree below left menu
Replies: 6
Views: 3627

Re: Products module and adding hierarchy tree below left menu

I would also love to see an example :)
by Stom
Mon Oct 19, 2009 2:06 pm
Forum: Layout and Design (CSS & HTML)
Topic: Working with HTML/CSS...
Replies: 5
Views: 20650

Re: Working with HTML/CSS...

Also useful: Colorzilla and MeasureIt, a colour picker and on-screen ruler. Both very handy when tweaking your css.
by Stom
Mon Oct 19, 2009 2:03 pm
Forum: Layout and Design (CSS & HTML)
Topic: Navigation Simple Horizontal individual colours
Replies: 10
Views: 3711

Re: Navigation Simple Horizontal individual colours

Is that just a stock template or have you stripped it down to what you need? I'll do the work for you if you're really stuck but better you learn how to do this yourself. Basically, all you need to do for each tag is a quick check of $node->extra1 and see what it's value is. Eg, previous example: {i...
by Stom
Sun Oct 18, 2009 9:01 pm
Forum: Layout and Design (CSS & HTML)
Topic: Navigation Simple Horizontal individual colours
Replies: 10
Views: 3711

Re: Navigation Simple Horizontal individual colours

Oh, also, your stylesheet entries have to have . before them to make them classes... eg .link1 {color:#000036;} .link2 {color:#F6A901;} ... Plus, in your source code, the classes aren't appearing in any of your elements, they're just floating, they need to be included inside a link or someting. Eg: ...
by Stom
Sun Oct 18, 2009 8:56 pm
Forum: Layout and Design (CSS & HTML)
Topic: Navigation Simple Horizontal individual colours
Replies: 10
Views: 3711

Re: Navigation Simple Horizontal individual colours

Post your menu template, we need to add the bit there
by Stom
Sun Oct 18, 2009 7:55 pm
Forum: Layout and Design (CSS & HTML)
Topic: Navigation Simple Horizontal individual colours
Replies: 10
Views: 3711

Re: Navigation Simple Horizontal individual colours

Easily done with your menu manager and stylsheet. Go into each of your pages, go to the Options tab, under "Extra Page Attribute 1:" put in "link1", "link2" etc. Then in your menu template, have something like {if $node->extra1!==''} class="{$node->extra1}"{/i...
by Stom
Sun Oct 18, 2009 7:46 pm
Forum: Layout and Design (CSS & HTML)
Topic: Link decoration wont go away
Replies: 5
Views: 2407

Re: Link decoration wont go away

So, assuming you're just using text links, change your CSS to: <style type="text/css"> <!--   a:link{color: #000; text-decoration: none; }   a:visited {color: #000; text-decoration: none; }   a:active{color: #000; text-decoration: none;   a:hover{color: #000; text-decoration: underline; } ...
by Stom
Sun Oct 18, 2009 7:41 pm
Forum: Layout and Design (CSS & HTML)
Topic: Invert Menu
Replies: 1
Views: 1079

Re: Invert Menu

Why not just make them into a bulleted list and use something like:

Code: Select all


ul.mylist li {
float:right;
display:inline;
}

<ul class="mylist">
  <li>Third Item</li>
  <li>SecondItem</li>
  <li>FirstItem</li>
</ul>
That would work...
by Stom
Sat Oct 17, 2009 1:17 pm
Forum: Modules/Add-Ons
Topic: Adding new Product Hierarchy causes error
Replies: 5
Views: 1781

Re: Adding new Product Hierarchy causes error

I'm also having this problem, as is someone else in the forum. I'm using the following modules: CMS Version 1.6.6 Installed Modules CMSMailer 1.73.14 FileManager 1.0.1 MenuManager 1.6.2 ModuleManager 1.3.1 News 2.10.3 nuSOAP 1.0.1 Printing 1.0.4 Search 1.6.1 ThemeManager 1.1.1 TinyMCE 2.5.5 CGExtens...
by Stom
Sat Oct 17, 2009 1:14 pm
Forum: Modules/Add-Ons
Topic: Uploads problem [ SOLVED ]
Replies: 15
Views: 5929

Re: Uploads problem

I'm also getting a similar issue when using the Products module and trying to add a hierarchy. It had been working ok but then, without making any changes, I'm getting "error - Array" when trying to add a new one. I have the following moudles installed: CMS Version 1.6.6 Installed Modules ...
by Stom
Thu Oct 08, 2009 7:03 pm
Forum: Layout and Design (CSS & HTML)
Topic: [solved] Template causes "No content given" error when adding new content
Replies: 2
Views: 1582

[solved] Re: Template causes "No content given" error when adding new content

Brilliant, that worked a treat. Thank you.

It also solved some issues I was having with the Products module.

Go to advanced search