Jump to content

Dhanishta

Member
  • Posts

    34
  • Joined

  • Last visited

Posts posted by Dhanishta

  1. Did you check the "Repeat background" box below the Background Image bit (where the Browse button appears?).It might have appeared hidden behind the frame of your channel layout?or Unless the directory images is a subdirectory of css, you need to use url(../images/background.gif) as the location is relative to the css file.

  2. Better if you go for Java script instead of HTML,and look at following code:

    <script type="text/javascript">

    $(function() {

    $("#giveAId").change(function(){ //2 step

    var stylesheet = $(this).val(); // 3 step

    $('link').attr('href',stylesheet+ '.css'); //4 step done here

    });

    });

     

    </script>

     

     

    <div style="float:right;padding:26px 0 0 0;color:#fff;">

    <select id="giveAId"> // 1 step

    <option>please select your choice</option>

    <option value="one">blue</option>

    <option value="two">pink</option>

    </select>

    </div>

  3. Hi, I am also newbie here, though HTML and CSS are two different internet languages, i compare CSS with HTML, may be because of both are having tags. But its true that both are two different languages, Thanks for sharing this post.

×
×
  • Create New...