Jamie Gill
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Styling LinksSorry just realised half my post is missing. The stylesheet is still applying the styles as if the div was an ID ie – #cssmenu .
It needs to apply the styles you wrote to a class ie – .cssmenu .
At the minute there technically is no style to the div class cssmenu
Forum: Themes and Templates
In reply to: Styling LinksYou also need to change all the references in your stylesheet from #cssmenu to .cssmenu
Forum: Themes and Templates
In reply to: Styling LinksOk just noticed you have duplicated #cssmenu . Duplicating the IDs is probably your problem here. I noticed this when validating the site this can sometimes pick out the problems for you.
Try changing them to classes that should crack it.
Forum: Themes and Templates
In reply to: Styling LinksOk cool,
Think I may have spotted the problem. At the bottom of your stylesheet you have
a { color: #1982d1; font-weight: bold; } a:focus, a:active, a:hover { text-decoration: none; color: red; font-weight: bold; }this is overriding the styles you have defined above, trying moving the code I referenced above your custom stylings and that should work.
Forum: Themes and Templates
In reply to: Styling LinksHi,
The style of the links is been picked up by the usual default colors in a stylesheet. You would be best defining the links to there parent div. As I have noticed you have wrapped your required link items in there own divs #cssmenu. So for instance to change the links from Blue to Black you would use the following code
#cssmenu a { color:#000}
hope this helps
Cheers
JForum: Themes and Templates
In reply to: [Brunelleschi] Page Body ColorHi Goluf,
What color on the page are you trying to change? I assume your talking about the white background?
Forum: Themes and Templates
In reply to: footer css problemhi,
If your wanting at the bottom of the theme just add into the CSS clear: both; so it would like like this in the stylesheet
#footer{ height: auto; width:100%; clear:both }Cheers
JForum: Fixing WordPress
In reply to: How to Create Custom Email Messages with Profile Builder ProHi mharriett,
Did you ever find a solution for this as I could do with this solution too.
Cheers
JForum: Themes and Templates
In reply to: Can't put bullets in for blackbird themehi Jiggers,
Looking at your site the second link Im assuming its the side bar list items to have bullets. To do this in your style sheet you have
.sidebar ul li { font-family: "Trebuchet MS"; font-size: 14px; margin-left: 0; padding: 5px 0; }Add list-style:disc; , so it looks like this
.sidebar ul li { font-family: "Trebuchet MS"; font-size: 14px; list-style: disc; margin-left: 0; padding: 5px 0; }hth
Cheers
JForum: Themes and Templates
In reply to: Change template color (Figero, InkThemes)Hi Milan,
In the style.css file on line 420 is where the style is been called as follows
.second-header { background: url("images/sliderbg-blue.png") repeat-y scroll center center #082C58; overflow: hidden; }The Background element is what controls the color of the background at the minute it is the image slider-blue.png that is casting the blue gradient background. To change the color just replace the background too a hex code ie if you wanted it black you would need to replace
background: url(“images/sliderbg-blue.png”) repeat-y scroll center center #082C58;
with
background: #000;
As #000 is the hex code for black. alternatively to play around with the site and change things without mking definate alts try downloading Firebug for Firefox.
HTH
Cheers
JForum: Themes and Templates
In reply to: Navigation bar problemHi,
have you tried to reducing the padding in the CSS between the list items so the dropped button fits in? Or do you really want a second nave bar?
A link to the site always helps too so people can take a look at how the build is.
Cheers
JForum: Themes and Templates
In reply to: full page background imageHi,
In your style.css you have the following
body {
background-attachment: fixed;
background-image: url(“http://valleyspringchurch.com/bulletin/wp-content/uploads/2012/10/wheat_backgroun.jpg”);
}just add background-size:cover; so it will look like this in the code
body {
background-attachment: fixed;
background-image: url(“http://valleyspringchurch.com/bulletin/wp-content/uploads/2012/10/wheat_backgroun.jpg”);
background-size: cover;
}That should give you the effect your after.
Cheers
JForum: Themes and Templates
In reply to: How can I change the color on the slider and main body?The banner is made up of one main bg, but just changing that wont get your desired effect ie the search bar would need a new image as it disappears into the white. Then your content area has a top lid image to create rounded edge, then a middle image then a bottom image.
I would certainly recommend what Esmi said download Firebug and have a play to see how every thing is made up on the site. You can also alter the code in firebug to test to see how things will look.
Forum: Themes and Templates
In reply to: The footer is not centeredNo problemo, glad it helped.
Forum: Themes and Templates
In reply to: The footer is not centeredIn wordpress on the left set go to Appearance then Editor. In there you can access your webfiles. To apply the CSS changes above you will need to go to the file style.php. However please be careful before editing any files if you are not confident, make sure you make backups incase anything goes wrong.