itsdavidmorgan
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Optimizer] Transparent Header on FrontpageI’d have to see a link to your site to know exactly what you’re referring to. However, you can add transparency to any element using the opacity property in CSS:
#your-header { opacity: 0.5; }
Forum: Themes and Templates
In reply to: [GeneratePress] Unwanted ImagesTry this code instead:
ul.wpuf-attachments { display: none; }
Placing it just below the body tag is probably best.
Forum: Themes and Templates
In reply to: [evolve] Change Title on Web site TabYou could try using an SEO plugin to change the tab title for the page, while leaving the page name the same.
Forum: Themes and Templates
In reply to: [GeneratePress] Unwanted ImagesI’m not sure what happened, but you could hide the images by hiding that unneeded section of the page. Add the following to your stylesheet:
.wpuf_customs { display: none; }
Forum: Themes and Templates
In reply to: [Aaron] mulfunction!Not without more information. Were you performing an update?
Forum: Themes and Templates
In reply to: how do you remove whitespace below header and above footerYeah, all themes will be different. I’d recommend using something like Firebug or the Chrome inspector to see what classes and styles are creating the padding. Then you can target those styles to remove the padding.
Forum: Themes and Templates
In reply to: Removing title/header/banner on product pagesYou could try something like this in your stylesheet:
.single-product .title-wrapper { min-height: 80px; } .single-product .title-wrapper .container { display: none; }
Forum: Themes and Templates
In reply to: updating to version 2.2I’m assuming you mean version 4.2.2?
You shouldn’t have any issues upgrading unless you’re using a number of plugins on your site that haven’t been updated for a long time.
Forum: Themes and Templates
In reply to: [Theme: Misty Lake] Adding a blog description to the Blog pageNo prob. Yeah, you can use the Jetpack plugin and activate the “Widget Visibility” setting. Then, within Appearance > Widgets, you can choose to display that particular widget only on your blog page.
Thanks!
Forum: Themes and Templates
In reply to: how do you remove whitespace below header and above footerNo prob, you could do it for all pages like this:
.page .content-area { padding: 0px; } .page .entry-header, .page .hentry { margin: 0px; }
Forum: Themes and Templates
In reply to: [Theme: Misty Lake] Adding a blog description to the Blog pageYou could do this by adding a text widget to your sidebar with the description. Then, using CSS hide that widget on all pages except your blog. I could give you the code, but I’d need a link to your site with the widget already added.
Thanks!
Forum: Themes and Templates
In reply to: how do you remove whitespace below header and above footerAssuming you’re trying to make this change for only this page, you could add the following styles to your stylesheet:
.page-id-97 .content-area { padding: 0px; } .page-id-97 .entry-header, .page-id-97 .hentry { margin: 0px; }
Thanks!
Forum: Themes and Templates
In reply to: [Hueman] How to remove social icons from top bar?Do you have a link to your site instead of an image?
You could remove it with some basic CSS, but I’d need to see your site.
Thanks!
Forum: Themes and Templates
In reply to: [Virtue] How to remove the side bar on pagesIf your theme doesn’t have a full width template, you could hide the sidebar and increase the width of the page with these styles:
.page .main { width: 100%; } .page .kad-sidebar { display: none; }
Hope this helps!
Forum: Themes and Templates
In reply to: [Customizr] Content showing up in the footer?Try adding the following code to your stylesheet:
footer#footer { display: inline-block; width: 100%; }
Thanks!