kaniamea
Forum Replies Created
-
Try opacity: 0.1 – this should make it it more transparent.
The opacity property can take a value from 0.0 – 1.0. The lower value, the more transparent.
Forum: Themes and Templates
In reply to: [Libretto] how can i get categories and tags to appear on posts?You can add
<p><?php the_tags(); ?></p> <p><?php the_category( ' ' ); ?></p>
in your child single.php
Forum: Themes and Templates
In reply to: [Celestial - Lite] Custom CSS is breaking page layoutTry removing height: 100px; from:
#content { width: 100%; height: 100px; }
Forum: Fixing WordPress
In reply to: blog heading questionThe easiest way to get rid of it is placing this code in your css file:
.pagetitle { display: none; }
Forum: Fixing WordPress
In reply to: Slider and images not showingThe picture issue should be fixed by adding this in your css:
.entry-image { opacity: 1; }
The slider still doesn’t show though. Could you a theme problem.
Forum: Fixing WordPress
In reply to: Change Font Size through CSSRegarding the font size try again and this time add !important at the end like this:
.nav-primary .menu-item > a { font-size: .5em !important; }
I see this in your code:
<div id="attachment_1447" style="width: 210px" class="wp-caption alignright"><img class="wp-image-1447 size-full" style="float:right" src="test_files/Robin-Lee-e1460381330215.jpg" alt="Robin Lee" height="267" width="200"><p class="wp-caption-text">WCDS Early Childhood teachers and students work alongside STEM Specialist Robin Lee from the Oglebay Schrader Environmental Center.</p></div>
Try removing the starting “<div id=”attachment_1447″ style=”width: 210px” class=”wp-caption alignright”>” and the ending div “</div>”
Forum: Fixing WordPress
In reply to: white screen of deathHi Jim,
Do you remember what you did before this problem occurred?
If it is a plugin you installed or modified you can login via FTP and remove it and see if this fixes the issue.
You can also Google “WordPress white screen” and you will see tons of articles suggesting how to fix this issue.Forum: Fixing WordPress
In reply to: 403 ErrorIt is possible that any other plugin you currently have doesn’t work with the most current WP installation you did or any WordPress file is corrupted.
You can try:
1) Deactivating one by one the other plugins and see if this resolves the issue
2) Switch to a different theme and see if the issue is still there
3) Make a backup of your site and reinstall WordPress
4) Make a backup of your site and reinstall the Wordfence security pluginForum: Fixing WordPress
In reply to: Fonts dispplay getting small than before!!To increase your font size try adding in your css file:
.entry-excerpt p { font-size: 2em; }
If it is too big change the value to 1em.
Forum: Fixing WordPress
In reply to: Change Font Size through CSSYou can add this in your css code:
.nav-primary .menu-item > a { font-size: .5em; letter-spacing: 5px; }
font-size changes the font size – for example .5em will make it even smaller than what you have now.
letter-spacing – changes the spacing between linesForum: Fixing WordPress
In reply to: remove social buttons on postYou can install a css plugin for example – Simple Custom CSS. Then place this code there. The social media buttons in the header and footer shouldn’t be affected and they should still appear on your site.
Forum: Fixing WordPress
In reply to: After hosting migration cannot access adminUsually hosting companies assist with this type of errors. Did you try contacting them?
Alternatively, you can try to reset your password or username via phpMyAdmin.
Forum: Fixing WordPress
In reply to: remove social buttons on postYou can simply put this in your css file:
.socials { display: none; }
Forum: Plugins
In reply to: Conditional if statement for a particular WP pageFigured it out!