zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to enable my website visitors to change themeTry this maybe, haven’t used it myself, but it should do what you need.
Forum: Fixing WordPress
In reply to: Change text color in WP Events CalendarAnd here is the navy colored font in the large one, same stylesheet.
Look for
#wp-calendarLarge .event-block {
border-top: 1px solid #444;
display: block;
padding: 2px 0 0 2px;
line-height: 11pt;
color: navy;
}change color: navy; to color: white;
Forum: Fixing WordPress
In reply to: Change text color in WP Events CalendarOk, you should have a stylesheet called events-calender.css
open that, and here is what changes the colors of the fonts. search through it and you may have to add css to them.
Just add a color: #000; to each of them and it should fix.#wp-calendar th { <– changes month titles at the top
#wp-calendar td { <– light grey for days already past
#wp-calendar caption { <– changes month color which is white.
This is for the smaller calendar I’m still looking for the larger one.
Forum: Fixing WordPress
In reply to: Change text color in WP Events CalendarShould ask in the themes forum, but post a link and I’ll take a look.
Forum: Themes and Templates
In reply to: Looking for a templateForum: Themes and Templates
In reply to: changing fontOpen your style.css and it should be near the top.
body {
text-align: center;
font: 12px Arial;
color: #808080;
background: #FFFFFF url(images/background.gif) repeat-x 0 0;
}change the color: #808080; to color: #000;which is black, r whatever color you prefer.
Forum: Themes and Templates
In reply to: How to change my template to include drop down menusAdding a dropdown menu is usually fairly complicated. If you’re worried about “mucking” up the site just by changing the theme, then you probably won’t want to start adding a dropdown menu to it.
Changing your sites theme shouldn’t change anything else on it, but the theme. It may disable widgets if the new theme you choose doesn’t happen to have a right sidebar, but that’s easily fixed in your admin section.
You could try contacting the author of the theme and asking them if they would realse a version with da dropdown menu too.
Forum: Themes and Templates
In reply to: Want to change the color of font in pixelopen the style.css in yoru theme folder and find
#header span {
padding: 0;
color: #111;
font-size: 11pt;
}change the color to what you want.
Forum: Themes and Templates
In reply to: changing fontwhat is the url?
Forum: Themes and Templates
In reply to: Page Sizealso, did you use full page or regular page for your forum?
Forum: Themes and Templates
In reply to: Page SizeOpen your style.css and search for .post-wrapper and increase the width. This could effect more than just that page though.
Forum: Themes and Templates
In reply to: Adding A Border.I told you in the previous post what to change. search for .entry, thats where you need to add it. make a backup of yoru style.css file first though.
Make the change, see if the image appears behind it like you wanted, if it does, you’ll most likely need to mess with the css/image to fit it perfectly. I can’t tell you exactly what to add, just a general idea on how to do it, sorry I can’t be of more help.
Forum: Themes and Templates
In reply to: Can't remove white wrapper border from custom templatechange the BG color for #000, see if that effects the white you see
if it does, then change the padding you have set in the wrapper onleft and right, see if that has any effect.#wrapper
{
background-color: #ffffff;
background-image: none;
background-repeat: repeat;
background-attachment: scroll;
background-position: 0% 0%;
margin-top: 0px;
padding-top: 0pt;
padding-right: 20px;
padding-bottom: 0pt;
padding-left: 20px;
}Forum: Themes and Templates
In reply to: Increase the width of the sidebar in lightword themechange #content, i think thats mostly what’s giving you the problem, then change your sidebar width which is in content-sidebar
Forum: Themes and Templates
In reply to: Increase the width of the sidebar in lightword themetry making the #contentwider, then change yoru sidebar width, just add 20px to the sidebar at a time and watch when it breaks and goes to the bottom.