Michael Smith
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: i can't get it fixed, sticky menu grrrI believe adding the following code the end of the style.css will get the effect you want
.header-main { background-color: #C31111; padding-right: 0; position: fixed; top: 0; width: 1225px; }Forum: Themes and Templates
In reply to: Content to hard to readI just looked at the links you sent as well as the screen shot. I don’t see the problem you captured in the screen shot. I did need to refresh the page to show the updated css so be sure you do that.
If you are still having problems you can try adding:
body { color: #FFF; }To the end of your CSS file, but that may have broad repercussions across the site.
Forum: Themes and Templates
In reply to: Content to hard to readI don’t see that on the tabket and I’m going to be away from my laptop fir the rest if the night. I’ll be happy to look at in the morning.
Forum: Themes and Templates
In reply to: Content to hard to readThere is an extra bracket in the code you posted. Remove the last } symbol.
Also don’t replace the code. Just put what I gave you at the end of the stylesheet.
Forum: Themes and Templates
In reply to: Content to hard to readIf you add the following code to the bottom of your style.css file it will removed the text shadow and make the text white. That is much easier to read IMHO.
A word of warning. Since it does not appear that you are using a child theme this fix may be overwritten if you update the “Boston” Theme. To make the fix more permanent i would look at installing a custom CSS plugin, or creating a child theme.
.entry { color: #FFFFFF; text-shadow: none;}‘
Forum: Themes and Templates
In reply to: [Travel Lite] how do i de activate the comment sectionThat’s a sign that your CSS file is no longer linked to your website. Question why are you moving your index.php file?
Forum: Themes and Templates
In reply to: customizr – space between slider and contentHere you go:
@media only screen and (min-width: 768px) {
/* This is the basic code for a media query – Note it is set for min width so this will affect your desktop styles, not tablet, not mobie */
}This may be useful too
Forum: Themes and Templates
In reply to: customizr – space between slider and contentI was able to get the spacing to change using negative margins. See the code noted below. However to get it to look they way you want for different screen sizes you will need to use a number of media queries.
h3 { font-size: 24px; line-height: 24px; margin-top: -24px; } .row { margin-left: -30px; margin-top: -27px; }Forum: Themes and Templates
In reply to: customizr – space between slider and contentSounds good. Let me know when its up and ill take a look.
Forum: Themes and Templates
In reply to: customizr – space between slider and contentThats probably just a matter of adjusting the margins/padding. can you post a link to the site?
I don’t know if there is a way to do it with theme options, but if you add the following code to bottom of style.css you can get rid of the author bio
.author-bio { display: none; }Forum: Themes and Templates
In reply to: [Sugar and Spice] Not Responsive – My faultIt looks like you set your page width to a fixed 1300px. I was able to make it responsive again by removing all the “width” selectors except for #page and nav#main-nav
I didn’t change nav#main-nav and i changed #page to 80%.
The theme author may have a better answer but I think this will work.
Forum: Themes and Templates
In reply to: [Academica] Need a fixed floating header help?no problem
Forum: Themes and Templates
In reply to: [Sugar and Spice] Not Responsive – My faultwrong post. ill get yours fix in a sec. sorry.
Forum: Themes and Templates
In reply to: [Academica] Need a fixed floating header help?If you put the following code at the bottom of your style.css it will get the floating header you asked for. Let me know if it give you any trouble.
#header { padding-bottom: 30px; position: fixed; top: 0; width: 960px; background-color:#FFF; } #slider-wrap { border-bottom: 1px solid #F99734; border-top: 1px solid #F99734; margin-top: 186px; padding: 1px 0; }