Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Facebook Sign In with Google Sign In with OpenID Sign In with Twitter

In this Discussion

Feedback

This discussion is related to the Noise addon.

Any Feedback?

Tagged:

Best Answers

  • peregrineperegrine MVP
    Answer ✓

    I think you have to change all the references to starting with line 64

    src="/themes/Noise/design/images/...."

    to src="themes/Noise/design/images/..."

    it can't find the pngs otherwise for the css switcher.

    in default.master.php


    factoid: Most questions have been previously answered, try the search box first, please provide your Vanilla version Number!

    Peregrine's Addons - donations gladly accepted for "successful solutions" and addons - kind of like tipping a waiter at a restaurant

    SevMC
  • peregrineperegrine MVP
    Answer ✓

    nice theme. I'll learn something I'm sure by looking at its design

    I think you may have to change all the references to starting with line 64 and also line 40 for the signout.

    src="/themes/Noise/design/images/...."
    

    to

    src="themes/Noise/design/images/..."
    

    it can't find the pngs otherwise for the css switcher.

    in default.master.php

    I'd also consider adding around line 531

    #Head form input#Form_Search {
                  background:white;
                  color: black;
                  }
    

    factoid: Most questions have been previously answered, try the search box first, please provide your Vanilla version Number!

    Peregrine's Addons - donations gladly accepted for "successful solutions" and addons - kind of like tipping a waiter at a restaurant

    SevMC
  • peregrineperegrine MVP
    Answer ✓
    other/css/green.css:   background: url(http://makeitsound.org/themes/mis/design/images/bkg-green.png) fixed!important;
    other/css/pink.css:   background: url(http://makeitsound.org/themes/mis/design/images/bkg-pink.png) fixed !important;
    other/css/red.css:   background: url(http://makeitsound.org/themes/mis/design/images/bkg-red.png) fixed !important;
    other/css/blue.css:   background: url(http://makeitsound.org/themes/mis/design/images/bkg-blue.png) fixed !important;
    

    at least these there might be more.

    thats why I suggested you look via grep -ri png *


    factoid: Most questions have been previously answered, try the search box first, please provide your Vanilla version Number!

    Peregrine's Addons - donations gladly accepted for "successful solutions" and addons - kind of like tipping a waiter at a restaurant

    SevMC
  • 422422 Developer MVP
    Answer ✓

    I would strongly recommend NOT doing absolute URL's for your png images.

    Its really a bad move. For masses of reasons.

    Better is to add a 1px x 1px transparent png, into the theme template and use absolute url for that.

    If you change your theme, or your server is down.. lots of peoples themes will eff up. Plus the amount of bandwidth and pings to your server will be ridiculous.

    422 Real Estate Australia , now open Check it out

    SevMC
  • peregrineperegrine MVP
    Answer ✓

    an example.

    background: url(../../design/images/bkg-blue.png)

    then doublecheck all of your css files for references to your site to make sure you changed them all.

    the theme also would be faster if you lose the @import url(http://fonts.googleapis.com/css?family=Lato:400,400italic,700,700italic); in custom.css.

    delete all the references to Lato

    and add the line to the body font-family:Arial,Tahoma,Calibri,Verdana,Geneva,sans-serif;

    you also have two body statements for some reason.


    factoid: Most questions have been previously answered, try the search box first, please provide your Vanilla version Number!

    Peregrine's Addons - donations gladly accepted for "successful solutions" and addons - kind of like tipping a waiter at a restaurant

    SevMC
  • peregrineperegrine MVP
    Answer ✓
    If you want the activities page to change colors for the comment link
    you need to change this to your 5 color css files.
    
    .MessageList .Meta a {
    
    to this
    .Activities .Meta a ,.MessageList .Meta a {
    

    factoid: Most questions have been previously answered, try the search box first, please provide your Vanilla version Number!

    Peregrine's Addons - donations gladly accepted for "successful solutions" and addons - kind of like tipping a waiter at a restaurant

    SevMC
  • peregrineperegrine MVP
    Answer ✓

    I still think you need a change log for version changes. A user may not want to keep on re-installing each version - minute by minute for a padding change or a border color change. But they may want to if there is a serious bug. But it will certainly keep the theme at the top of the addons page and get more downloads :).

    At some point, you will drive the users crazy with the minute by minute update. You might consider block changes on a less frequent interval unless you truly see the need. Just my thoughts.


    factoid: Most questions have been previously answered, try the search box first, please provide your Vanilla version Number!

    Peregrine's Addons - donations gladly accepted for "successful solutions" and addons - kind of like tipping a waiter at a restaurant

    SevMC
«1

Answers

Sign In or Register to comment.