viceng
Forum Replies Created
-
Forum: Themes and Templates
In reply to: twentytwelve – diferent font color for each memu itemThanks for your help. It ends up that I specified css styles in the twenty twelve menu panel and then I added the custom css
.main-navigation ul.nav-menu li.productstag a {
color: green;
}.main-navigation ul.nav-menu li.sharetag a {
color: blue;
}
where productstag and sharetag were defined by me in the theme’s menu panel.Thanks
Forum: Fixing WordPress
In reply to: Please help!!!!Do you have pages entitled
This is a test PrefixTattoo StudiosThis is a test Postfix
This is a test PrefixOnline Tattoo GalleriesThis is a test Postfix
This is a test PrefixTattoo LinksThis is a test Postfix
This is a test PrefixContact UsThis is a test PostfixI would check your header.php file
It looks like you have
This is a test Prefix as a prefix to your page title and
This is a test Postfix as a postfix to your page titleForum: Fixing WordPress
In reply to: Please help!!!!a url would help
Forum: Fixing WordPress
In reply to: Random ImageI believe you want
<div id=”contentBanner”></div>
#contentBanner {
height: 250px;
width: 788px;
float: left;
background: #003 url(images/banner.png);
margin-top: 10px;
margin-bottom: 20px;
}You want id’s not classes
Forum: Fixing WordPress
In reply to: images not aligning to the left (stylesheet included)#content img {style.css (line 398)
border:0 none;
display:block;<<<<<——–should be display:inline;
margin:0 auto;
max-width:100%;
padding:0;
}hope this helps
Forum: Fixing WordPress
In reply to: Logic problem in categories displayingthe wierd thing about this is that I took your code and placed it on my 2.8.1 site and it worked fine.
Forum: Fixing WordPress
In reply to: Show hierarchy in Categories widget problemI saw the same thing in dmytron’s site….I used his code in a index.php file and it worked fine…perhaps it’s a widget or plugin issue.
Forum: Fixing WordPress
In reply to: Logic problem in categories displayingHere is what is being generated
div class="sidebar-box"><!-- AVH Extended Categories version 2.0.3 | https://blog.avirtualhome.com/wordpress-plugins/ --> <h3>Categories</h3> <ul> <li class="cat-item cat-item-18"><a>Aquariums</a> </li> <ul class='children'> <li class="cat-item cat-item-20">Brackish aquarium </li> <li class="cat-item cat-item-21">Freshwater aquarium </li> <li class="cat-item cat-item-19">Seawater aquarium </li> </ul> </li><--------------should be a <ul> <li class="cat-item cat-item-5"><a>Fish</a> </li> </ul> </div>
the error is that the /li should be a ul
I used your code in a test blog and it works correctly under 2.8.1
Perhaps the problem is in your extended categories plugin
Forum: Fixing WordPress
In reply to: My footer disappeared and I have no idea why. Help?one suggestion….in your footer.php file at the end
“</div>
</div
<?php wp_footer(); ?>
“
change to“</div>
<?php wp_footer(); ?>
</div>to determine if a plugin is doing something to the footer.
Forum: Fixing WordPress
In reply to: Can’t seem to tame the sidebarin your style.css file at around line 101,,
you can just add css line
#blurb {
display: none;.
.
.
}This will not display the blurb.
I’m not sure what they are talking about with respect to a widget..
you should contact the developer….It’s probably used for a featured text of some sortHope this helps
Forum: Fixing WordPress
In reply to: Can’t seem to tame the sidebari’m getting an error when I go there
Forum: Fixing WordPress
In reply to: Cannot View Page Sourceworks fine on mac/firefox
Forum: Fixing WordPress
In reply to: BLOG TITLE- Where is it stored, please?the blog title is the general settings section of your dashboard
Forum: Fixing WordPress
In reply to: Removing repeated menu itemis that the title of the page that’s showing???…a url to your site would be helpful
Forum: Fixing WordPress
In reply to: Logic problem in categories displayingyou are missing a ul tag in front of your primary categories…it’s there for the first but not for the ones after that.