zeniph
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Adding dropshadow-png to bottom of posted pics??something like this might work – it uses the existing full-size class to isolate large images, then as mores suggested increase the bottom padding.
p img.size-full { background-color: white; padding: 4px 4px 20px 4px; border: 1px solid #CBCBCB; border-bottom:none; background: url(images/picshadow.png) no-repeat center bottom; }
this assumes the background image is 20px high. You’d need to also simulate the white padding and 1px border in the bg image as well as the dropshadow.
Forum: Themes and Templates
In reply to: Unordered list cannot show bulletneed a link to your site
I know you’re trying to help with screen snap and CSS fragment but these problems usually relate a completely different part of the CSS – maybe one that has made a global change to UL, OL, LIs.
or get firebug plugin for firefox and you’ll find issue in seconds
Forum: Themes and Templates
In reply to: Editing Top Menu Navigationthere are a couple plugins available – heres one:
https://www.dontdream.it/en/dropdown-menus-for-wordpress/maybe search for “suckerfish wordpress”
suckerfish refers to one of the first clean XHTML implementations of drop down menus
Forum: Themes and Templates
In reply to: Un-alphabetizing Menu Itemswp_list_pages('sort_column=menu_order')
will order them the same as how they display on backend
Forum: Themes and Templates
In reply to: Sidebar Completely Dissapears when viewing in IElisted amongst other issues the answer was in the error report linked to by samboll
end tag for object omitted, but OMITTAG NO was specified
you simply have no closing OBJECT tag for the flash widget thing at the bottom
sugar hill gang are still alive and kicking!? – are they the same guys?
Forum: Fixing WordPress
In reply to: Photo Upload Issue HELP!flash 10 incompatibility?
https://www.ads-software.com/support/topic/177127?replies=47
if so downgrade to version 8/9 player and all should work again
Forum: Themes and Templates
In reply to: Custom Theme in IE6 sidebar goes to the bottomits the caption below this image
https://blog.webmarket.es/wp-content/uploads/2009/01/6078x1500y1500.jpgchange to a DIV or display the existing SPAN as a block to force the line break
#caption{ display:block }
would do it
seems to me it should really be a class of “caption” rather than an ID but what ever
Forum: Themes and Templates
In reply to: Remove mouseover effect – MU default Kubrickha ha – yes should have been
color:#000000; or color:black;
Forum: Themes and Templates
In reply to: custom headeradd the following
#header h1, #header h2 {display: none}; #pixopoint_menu_wrapper1{padding:160px 0 0 0}
for SEO you can keep your H1 H2 but just set them to invisible (display:none)
Forum: Themes and Templates
In reply to: Need CSS helpadding
#header DIV.content ul li { display:block; }
should be enough to get them going down.
note this will probably affect all content lists on all pagesyour DIV structure / ID naming is kind of weird. Normally #header would only contain the banner/navigation part of the site. In your case #header holds everything including the content. All of your list items are being styled by #header LI the way you’d might do it for header navigation elements.
Forum: Themes and Templates
In reply to: Styling the “<?php the_content(‘Continue Reading…’); ?>”?broadly speaking you’d need to change something like the below in the CSS to get a handle on it
p.continue a{
font-size:2em
}but a link to you site is the best way to get help here. Your prob relates to HTML and CSS so need examples of that – not the PHP and the WP version
Forum: Themes and Templates
In reply to: WordPress as a CMSuse category templates and seperate your blog/web content into different categories
or
use page templates, create your website content using pages and assign the page templates to them
all just a matter of some visual trickery to achieve what you want
Forum: Themes and Templates
In reply to: Remove mouseover effect – MU default Kubricka, h2 a:hover, h3 a:hover { color:#0066CC; text-decoration:none; }
change to
a, a:hover { color:#0066CC; text-decoration:none; }
Forum: Themes and Templates
In reply to: Cant get container to stretcher.some of the content within #container has the following applied to it
position: absolute;
float:left (or right)either of these attributes mean that #container DIV wont expand its height to fit what it contains.
You could try adding a redundant DIV with clear:both applied to it just beforen you close #container. That will fix it for the floats but not the absolute positioning.
Forum: Themes and Templates
In reply to: If I change my Theme will it erase everything?All your data will remain – only how it displays will change
you can switch back to your original theme and everything will be back to how it was