11
talunceford
Re: Working on a new theme for my site......

Stylexp is a very neat program, as it allows you to theme your machine very easily. Basically just select the theme and presto. The web site where you get stylexp offers thousands of themes and what not to download too.

12
talunceford
Re: Working on a new theme for my site......

Ok, the theme is very very close to being finished. One of the main comments that I have been getting is that the flash animation needs to only be shown on the index page. How would one go about doing that? I mean I have the templates for the non flash version of my site. How could I create a template file that would determine where the flash needed to be and where it didn't. My initial idea was to create a template that was constructed out of if statements and includes. I tried that, and it didn't work too well. Any other ideas as to how I could achieve this goal?

13
talunceford
Re: Working on a new theme for my site......

In my last post, I had mentioned that one of the biggest comments that I have been getting on my site was the fact that the flash animation is very cool and all, but they would rather see it on the index page and not have it run on the rest of the pages. After thinking about this for a week or so, I came up with a solution. Use the themechanger module. Basically, I have two identical themes, one with the flash animation, the other with static graphics. The flash animation theme is only viewable on the index page, and the non-flash animation is viewable on the rest of the site. EASY FIX!!! I have had to spend alot of time reorganizing the block layout on my site. What I mean by that, is only showing certain blocks in certain modules. By utilizing the entire system of xoops, it has allowed me to format my site the way that I have always wanted.

Thanks to all that have put in the endless hours, because of you we(as a community) have one KICK ASS CMS!!!!!!

Here is an example of the theme as it is right now.

Resized Image

Resized Image

14
Anonymous
Re: Working on a new theme for my site......
  • 2004/12/4 20:58

  • Anonymous

  • Posts: 0

  • Since:




Wooooooooooow it looks fantastic!!!

15
talunceford
Re: Working on a new theme for my site......

Thanks for the comp!!

I am still running into sizing issues with some of the modules. I guess I am going to have to go through the ones that are giving me the problems and edit the raw tempates for each one of them.

That is what you run into though.....

ROCK ON XOOPS!!

Oh, FYI, I would share this theme, but being that I purchased it off of templatemonster.com I can't because of copyright issues. Sorry all.......

Now if you purchase this theme from them, contact me and I would be able to send you what I have.

This is a highly modified version of the one on templatemonster.com

16
JonArbuckle
Re: Working on a new theme for my site......
  • 2004/12/8 7:39

  • JonArbuckle

  • Just popping in

  • Posts: 3

  • Since: 2002/9/29


Great job as what I have seen, since I'm considering to purchase some template from template monster. few questions would like to have your commets .... if any that will be very appreciated.

1. Will it be a tough job to convert the monster template into XOOPS compatable? do you think it should reply on techy people's effort?

2. Other than template monster, is there any other resources for comercial template for xoops?

Your kindly input will be great help ...

Thanks!

17
talunceford
Re: Working on a new theme for my site......

Hi Jon,

To be completely honest with you, converting the theme to something XOOPS can use is really pretty easy. There are a few things that you have to do to get it to work, but its more time consuming than anything. FIND & REPLACE IS YOUR FRIEND!!! There are a few XOOPS smarty variables that are highly important IMHO. <{$xoops_url}> and <{$xoops_imageurl}>. Now of course the easiest way to find out how a theme is built is to take the default template and edit the theme.html file. In that file you will see how it is built and what you need in the html files supplied from template monster to get it to work.

Its a job that takes simply time to convert all of the image paths to the xoops_imageurl paths. If you would like to see how I did mine, I can post some of the code here if you would like.

As far as resources for templates, there are a few sites out there that offer pre-built templates, but just do a google search to find them. I used 3d gaming templates as a search in google to find the template I am using ATM.

Template Monster is the biggest resource that I have found to date though.

Now something that you need to consider, and I will suggest this to all that do get a pre-made theme tempate, make sure you have an idea as to how your site will be layed out. By that I mean the width of the theme has a lot of effect on what blocks you will be able to use and how the navigation will be constructed. If you look deep into my site, you will notice that I eliminated both the left and right blocks on some of the modules. Why some of you might ask, well to be honest the theme wouldn't render properly with them. So that is the main reason for the navigation menu at the top right under the main image.

Also, when you are building your css file, I found that some of the styles were contained in the html files. You have to take those out of the html file and add them to the style.css file. What I did to get started was take the existing default theme and rob bits and pieces from the css file to construct the one that I am using now. You have to to get the styles that are needed by XOOPS to render some of the features properly. I just basically copied the style.css file, the block html files that are in the default folder and used them as a building block persay.

here are the contents of what you probably will need....

theme.html
theme_blockright.html
theme_blockleft.html
theme_blockcenter_l.html
theme_blockcenter_r.html
theme_blockcenter_c.html
style.css
styleMAC.css
styleNN.css

All of these files can be copied from the default theme to get started. Like I said before just edit the theme.html to see how the tables are layed out and what not. You will quickly see how and what you will need to copy and move to get it working. Most full sites from templatemonster will come with more than one index.html file. Mine came with index.html, index_1.html, index_2.html.... etc. Just open what ever one suits your taste, I chose one that had a large open area in the middle, to work off of. You need to copy the info out of the top of the default theme.html also. The info that is in the <head></head> tags and add it to your index.html file.

Now once you get your theme file edited, and all of the image paths converted.

example of a background image tag
background="<{$xoops_imageurl}>images/l1.jpg"

example of an image source tag
<IMG SRC="<{$xoops_imageurl}>images/2.jpg" WIDTH=766 HEIGHT=13 ALT="">

That is the easiest way to convert tags that call to images. Just do a find replace for background=images/ and replace with background="<{$xoops_imageurl}>images/

And the same goes for the img src
Just do a find replace for img src=images/ and replace with IMG SRC="<{$xoops_imageurl}>images/

Pretty easy.

Those are just a few tips that I have on converting one. As far as the css goes, experimentation is the only key to it. Find what looks good to you and roll with it.

Feel free to stop by the site any time and post. I think I am going to write a tutorial on converting a theme from a templatemonster source, it might come in handy down the road.

Laters,

18
talunceford
Re: Working on a new theme for my site......

Here is yet another pic of the theme. This go around I changed the way that the left block links are displayed. I think it looks better, what do you think?

Resized Image

19
Eugney
Re: Working on a new theme for my site......
  • 2004/12/8 23:41

  • Eugney

  • Not too shy to talk

  • Posts: 162

  • Since: 2004/7/25


nice theme btw AstonShell is a really nice exploer themer to thats what I use

20
JonArbuckle
Re: Working on a new theme for my site......
  • 2004/12/9 0:47

  • JonArbuckle

  • Just popping in

  • Posts: 3

  • Since: 2002/9/29


Dear Tim,

This will be great help, it denitely worth a trial.
Thanks,

Jon

Login

Who's Online

170 user(s) are online (102 user(s) are browsing Support Forums)


Members: 0


Guests: 170


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits