epicdevspace
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Different coloured text appearing on different linesHi in your text view :
<span style="color:#000000;"> Black text</span> <span style="color:#CCCCCC;">Gray Text</span>
To make things easier you can add different classes to your style.css / custom.css and define font colors once.
for example
.blackt{ color:#000000; } .grayt{ color:#CCCCCC; }
Then your span will be
<span class=”blackt”></span> etc.All the best!
Forum: Fixing WordPress
In reply to: header problemHi OP
If you would like to ‘eliminate’ your header (the way I interpreted your post) you can use the CSS I provided.
If you need to eliminate the eye sore (ie. adjust the padding etc.) see @themesumo’s response.
Forum: Fixing WordPress
In reply to: header problemHi
CSS Method:
.site-header.fixed { position: absolute; display: none; }
Add this to your theme’s custom css section / style.css in your Child Theme.
All the best!
Forum: Fixing WordPress
In reply to: Add a margin-bottom to an embedded image in a postHi
I took a look at your site and I think the following will work quite nicely as the class remains consistent even when multiple iframes are rendered.
Add this to your Custom CSS / Childtheme’s style.css
iframe[class="instagram-media instagram-media-rendered"] { margin-bottom: 20px !important; }
Let me know if this works ??
All the best!
Forum: Fixing WordPress
In reply to: How to identify what the home page is calledHi
Have you tried to look under Settings->Reading in your Dashboard?
Forum: Fixing WordPress
In reply to: Button to launch youtube video in pop up (lightbox)Hi
You are indeed correct.
The CSS Approach:
Add this code to your Custom CSS file (if you have one and I highly recommend using a child theme) . Alternatively you can use https://www.ads-software.com/plugins/simple-custom-css/
a[rel="wp-video-lightbox"]{ text-decoration:none; background-color:#000000; padding:10px; border: 1px solid #808080; color:#ffffff; } a[rel="wp-video-lightbox"]:hover{ text-decoration:none; background-color:#CCCCCC; padding:10px; border: 1px solid #808080; color:#000000; }
This will give your anchor links the button aesthetic you require.
Forum: Fixing WordPress
In reply to: Button to launch youtube video in pop up (lightbox)Hi Werner
Have you tried WP Video Lightbox ?
Example usage:
<a href="https://www.youtube.com/watch?v=G7z74BvLWUg&width=640&height=355&rel=0" rel="wp-video-overlay"> BUTTON HTML / IMAGE </a>
Let me know how it goes, all the best!
Forum: Networking WordPress
In reply to: Custom css network wide for network activated plugins?Have you tried the Simple Custom CSS plugin?
All the best!
Forum: Localhost Installs
In reply to: Database RestoreHi
You can update the database name , username and password in wp-config.php which is located in your public_html folder.
All the best!
Forum: Localhost Installs
In reply to: PHP email issue with form submitsForum: Fixing WordPress
In reply to: 403 Forbidden Access to this resource on the server is denied!Hi
This is most likely an .htaccess issue as oppose to an author update issue.
- Backup your existing .htaccess and delete it from your public_html directory.
-
Navigate to Settings->Permalinks in your Dashboard and click on save.
Try to edit your page and save. Is this error still present?
Forum: Fixing WordPress
In reply to: mail getting delayHi
It might be best to contact your host to resolve any sendmail() / smtp issues that you’re experiencing.
All the best!
Forum: Hacks
In reply to: a sql query with a semicolon problemTry something like this:
global $wpdb; $mod_val='bm_shopping_cart.php;bm_categories.php'; $wpdb->insert($table_name9, array('field1' => $field1,'fieldwhatever' => $mod_val), array('%s','%s'));
Hope this helps, all the best!
Forum: Fixing WordPress
In reply to: Why does my website's title show my latest post?Hi
Please post the code of your theme’s header.php
It’s happening on Firefox , IE and Chrome so it’s not a Chrome specific issue. It’s likely the code between your <title> </title> in your theme’s header.php and a slight modification should resolve this issue.
Forum: Fixing WordPress
In reply to: I cannot Remove Tag Cloud Widget From Category PagesHi
Have you tried selecting the widget and clicking on Remove?
All the best!