Forum Replies Created

Viewing 13 replies - 16 through 28 (of 28 total)
  • Thread Starter lowercase001

    (@lowercase001)

    and the answer is…

    <li class="home"><a<?php if(is_front_page('home')) echo ' class="active"';?> href="/new"></a></li>
          <li class="news"><a<?php if(is_home('news')) echo ' class="active"';?> href="/new/news/"></a></li>
          <li class="releases"><a<?php if(is_page('releases')) echo ' class="active"';?> href="/new/releases/"></a></li>
          <li class="labels"><a<?php if(is_page('labels')) echo ' class="active"';?> href="/new/labels/"></a></li>

    Quick fix – drop Player.swf and yt.swf files into your wordpress installations root directory and all will work fine.

    Hey Alex,

    A simple explanation of what is happening to everyone.

    This path when upgrading problem exists for everyone who does NOT run wordpress in the root directory.

    I run wordpress in http://www.sitename.com/new

    So the upgraded plugin can’t find the player.swf and does not let me manually change the admin page to put in my full url to the JW PLayer.

    Easy.

    Any ideas on how to fix this? Why no matter what I enter via the wordtube settings ‘Path to JW Media Player’ field it changes straight back to ‘/player.swf’?

    Thread Starter lowercase001

    (@lowercase001)

    Using the above code, how do I make the active Parent highlight when on a child page as well as the active Parent page?

    Thread Starter lowercase001

    (@lowercase001)

    Thanks very much. This worked perfectly!

    Thread Starter lowercase001

    (@lowercase001)

    Thanks for the quick reply. That seems to have unpredictable results…

    If I add…

    embed, object {
    	padding: 3px !important;
    	border: 1px solid #05c7f6 !important;
    	background-color: #02a7cf !important;
    }

    A 1px border shows in IE (no padding/background etc) and nothing in Firefox at all?

    Thread Starter lowercase001

    (@lowercase001)

    anyone have any ideas of how best to achieve the above?

    Thread Starter lowercase001

    (@lowercase001)

    Here is an example of what I am trying to achieve…
    This is a page showcasing a cd…

    http://www.subpop.com/releases/grand_archives/full_lengths/keep_in_mind_frankenstein

    Now on the homepage – you can see the cd cover, title and some intro text taken from the release page and displayed in a list with some other recent releases.

    http://www.subpop.com/

    Does this make sense? I just need a suggestion as the best way to do this – Pages for each. Posts for each etc…

    Thread Starter lowercase001

    (@lowercase001)

    Any ideas?

    Thread Starter lowercase001

    (@lowercase001)

    I am using the following query to exclude category 19 posts…

    <?php if (have_posts()) : query_posts("cat=-19"); ?>

    Works well in excluding the post, but when I use the ‘Next Page’ link, the same 5 articles (as on the homepage) are listed – not the next 5 in the archive.

    Thread Starter lowercase001

    (@lowercase001)

    That was the problem. Thanks so much for the fix!

    Thread Starter lowercase001

    (@lowercase001)

    My css…

    @charset "utf-8";
    
    #container {
    	margin-right: auto;
    	margin-left: auto;
    	text-align: center;
    	clear: both;
    	width: 840px;
    	padding: 0px;
    }
    
    #header {
             margin-top: 300px;
    }
    
    #content {
    	clear: both;
    	text-align: left;
    	padding-left: 30px;
    	padding-right: 30px;
    	padding-top: 0px;
    	padding-bottom: 0px;
    	float: left;
    	width: 615px;
    }
    
    #menu {
    	width: 142px;
    	margin: 0px;
    	margin-right: 15px;
    	padding: 0px;
    	float: right;
    }
    
    #footer {
    	margin-right: auto;
    	margin-left: auto;
             margin-top: 30px;
    	clear: both;
    	background-image: url(images/footer.png);
    	background-repeat: no-repeat;
             text-align: right;
    }
    
    body {
    	margin: 0;
    	background-image: url(images/background.jpg);
    	background-repeat: no-repeat;
    	background-position: center top;
    	background-color: #6b969a;
    }
    
    body,td,th {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 14px;
    	color: #ffffff;
    	line-height: 20px;
    }
    
    h1, h1 a, h1 a:visited, #headerimg .description {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 24px;
    	color: #bbe4e8;
    	letter-spacing:-2px;
    	font-weight: bold;
             text-decoration: none;
             margin-top: 40px;
    }
    
    h1 a:hover {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 24px;
    	color: #ffffff;
    	letter-spacing:-2px;
    	font-weight: bold;
             text-decoration: none;
    }
    
    a {
    	color: #bbe4e8;
    	text-decoration: none;
    }
    a:hover {
    	color: #bbe4e8;
    	text-decoration: underline;
    }
    
    img {
             border-style: none;
    }
    
    .menu {
    	list-style:none;
    	width: 112px;
    	margin:30px;
    	padding: 0px;
    }
    
    .menu li, a {
    	display:block;
    }
    
    .menu li a span {
    	display:none;
    }
    
    li.home a {
    	height:27px;
    	background-image: url(images/menu_home.png);
    }
    li.home a:hover {
    	background-position: -112px 0;
    }
    li.home a.active {
    	background-position: -224px 0;
    }
    
    .vvqbox {
             padding: 5px;
    	background-image: url(images/img_background.png);
    	background-repeat: repeat;
    }
    
    .commentlist li {
     	padding: 5px 20px 5px 20px;
    	margin-top:15px;
    	background-image: url(images/img_background.png);
    	list-style:none;
    }
    
    .commentlist cite {
    	font-style:normal
    }
    
    .commentlist cite a:link, .commentlist cite a:visited {
    	color:#bbe4e8;
    	text-decoration:none;
             display:block;
    }
    
    .commentlist cite a:hover, .commentlist cite a:active {
    	color:#FFF;
    	text-decoration:underline;
    }
    ol {
             margin: 0px;
             padding: 0px;
             list-style-position: inside;
    }
    Thread Starter lowercase001

    (@lowercase001)

    My css…

    @charset "utf-8";
    
    #container {
    	margin-right: auto;
    	margin-left: auto;
    	text-align: center;
    	clear: both;
    	width: 840px;
    	padding: 0px;
    }
    
    #header {
             margin-top: 300px;
    }
    
    #content {
    	clear: both;
    	text-align: left;
    	padding-left: 30px;
    	padding-right: 30px;
    	padding-top: 0px;
    	padding-bottom: 0px;
    	float: left;
    	width: 615px;
    }
    
    #menu {
    	width: 142px;
    	margin: 0px;
    	margin-right: 15px;
    	padding: 0px;
    	float: right;
    }
    
    #footer {
    	margin-right: auto;
    	margin-left: auto;
             margin-top: 30px;
    	clear: both;
    	background-image: url(images/footer.png);
    	background-repeat: no-repeat;
             text-align: right;
    }
    
    body {
    	margin: 0;
    	background-image: url(images/background.jpg);
    	background-repeat: no-repeat;
    	background-position: center top;
    	background-color: #6b969a;
    }
    
    body,td,th {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 14px;
    	color: #ffffff;
    	line-height: 20px;
    }
    
    h1, h1 a, h1 a:visited, #headerimg .description {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 24px;
    	color: #bbe4e8;
    	letter-spacing:-2px;
    	font-weight: bold;
             text-decoration: none;
             margin-top: 40px;
    }
    
    h1 a:hover {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 24px;
    	color: #ffffff;
    	letter-spacing:-2px;
    	font-weight: bold;
             text-decoration: none;
    }
    
    a {
    	color: #bbe4e8;
    	text-decoration: none;
    }
    a:hover {
    	color: #bbe4e8;
    	text-decoration: underline;
    }
    
    img {
             border-style: none;
    }
    
    .menu {
    	list-style:none;
    	width: 112px;
    	margin:30px;
    	padding: 0px;
    }
    
    .menu li, a {
    	display:block;
    }
    
    .menu li a span {
    	display:none;
    }
    
    li.home a {
    	height:27px;
    	background-image: url(images/menu_home.png);
    }
    li.home a:hover {
    	background-position: -112px 0;
    }
    li.home a.active {
    	background-position: -224px 0;
    }
    
    .vvqbox {
             padding: 5px;
    	background-image: url(images/img_background.png);
    	background-repeat: repeat;
    }
    
    .commentlist li {
     	padding: 5px 20px 5px 20px;
    	margin-top:15px;
    	background-image: url(images/img_background.png);
    	list-style:none;
    }
    
    .commentlist cite {
    	font-style:normal
    }
    
    .commentlist cite a:link, .commentlist cite a:visited {
    	color:#bbe4e8;
    	text-decoration:none;
             display:block;
    }
    
    .commentlist cite a:hover, .commentlist cite a:active {
    	color:#FFF;
    	text-decoration:underline;
    }
    ol {
             margin: 0px;
             padding: 0px;
             list-style-position: inside;
    }
Viewing 13 replies - 16 through 28 (of 28 total)