ThemeSumo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change background color bbpress cssI’ve really tried many, many possible ways to get that avatar to centralize, it just does not want to play nicely.
Other than simply enlarging the avatar image to scale up to fill the container (not advised), we can simply reduce back the width slightly of its container.
Try changing the first snippet of code I gave you to this instead:
#bbpress-forums div.bbp-forum-author, #bbpress-forums div.bbp-topic-author, #bbpress-forums div.bbp-reply-author { width: 112px !important; padding: 20px; background: #efefef; margin-right: 20px; } #bbpress-forums div.bbp-forum-content, #bbpress-forums div.bbp-topic-content, #bbpress-forums div.bbp-reply-content { margin-left: 172px !important; } .administrador .bbp-author-role { margin: -75px auto 0; }
All we’re doing is reducing the size of the left container to 112px, and adjusting the left margin accordingly of the forum content container.
Hope this helps.
Forum: Fixing WordPress
In reply to: Update to 4.7 messed up, then I messed it up moreExcellent, that’s good to hear.
Forum: Fixing WordPress
In reply to: Change background color bbpress css.bbp-body ul { background: #efefef !important; } #bbpress-forums .tc_display li { text-align: center; padding: 0; }
Adding this will rectify some alignment issues, however, your theme is using many !important declarations and is making it difficult to align your member avatars thus far.
Forum: Fixing WordPress
In reply to: Update to 4.7 messed up, then I messed it up moreYes, you can freely replace all WP core files apart from the
wp-content
folder.I’m not sure what your initial problem could be, have you tried renaming your wp-content/plugins folder to plugins-old – this will de-activate all of your plugins at once, if this works and you can once again login to your Dashboard, you can rename the folder back to plugins so you can begin re-activating your plugins 1-by-1 via the Plugins menu.
I see you got it figured out, the text is looking a lot bigger than before now.
Forum: Fixing WordPress
In reply to: Change background color bbpress cssMaybe something like this perhaps?
#bbpress-forums div.bbp-forum-author, #bbpress-forums div.bbp-topic-author, #bbpress-forums div.bbp-reply-author { width: 160px !important; padding: 20px; background: #efefef; margin-right: 20px; } #bbpress-forums div.bbp-forum-content, #bbpress-forums div.bbp-topic-content, #bbpress-forums div.bbp-reply-content { margin-left: 220px !important; } .administrador .bbp-author-role { margin: -75px auto 0; }
Try it without both of the
!important
first, I couldn’t manage to override your BB stylesheet when testing.Add this to your chosen Custom CSS solution, either via the Customizer or a Custom CSS plugin.
- This reply was modified 7 years, 10 months ago by ThemeSumo.
Forum: Themes and Templates
In reply to: [Sparkling] Add content in sliderCan you provide a link to your site and I’ll try to implement such a thing for you, you should just be able to absolute position it on top of the slider.
Forum: Fixing WordPress
In reply to: Text Tab UnavailableTry using WP_DEBUG via your wp-config.php file and try again, are there any error reports anywhere on-screen?
define( 'WP_DEBUG', true );
Forum: Fixing WordPress
In reply to: Update to 4.7 messed up, then I messed it up moreDownload a fresh copy of WordPress.
Using an FTP client, like Filezilla, you can connect to your web space and delete the
wp-admin
&wp-includes
folders completely, then upload the folders from the fresh copy of WordPress in their place.This will restore it to how it was when it was still broken, however.
Forum: Themes and Templates
In reply to: [ColorMag] Colormag header date format problemYou need to use a Child Theme, this way you can use its functions.php file to modify a theme function.
You can copy/paste the code I gave you above into the file and it should work without any issues as I tested it on my own environment.
If you modified a theme file directly without using a child theme, you would lose all custom code changes the moment you update the theme in the future. The function we’re going to override resides within the
/inc/functions.php
file (line 514) of the colormag theme.Hope this helps.
- This reply was modified 7 years, 10 months ago by ThemeSumo. Reason: typo
Forum: Plugins
In reply to: [WooCommerce] change Woo message line coloursIt’s definately the correct classnames, the before selector on those elements are for the little icons.
Try this instead:
.woocommerce-error, .woocommerce-info, .woocommerce-message { border-top-color: #8fae1b !important; }
Your child theme style.css file should be working fine, but if you’re using WP4.7 you can also add the code via the Appearance > Customizer > Additional CSS menu.
If you ever modify a theme or plugin file directly, it will be overwritten when you next update it.
Hope this helps.
- This reply was modified 7 years, 10 months ago by ThemeSumo. Reason: typo
Forum: Fixing WordPress
In reply to: https://ihateseattle.com/Browse the themes directory to have a look for yourself, there are thousands of themes available to you for free.
This forum is for self-hosted versions of WordPress only, if you wish to discuss WordPress.com blogs then please use the WP.com support forum instead.
Hope this helps.
If you’re not using WP4.7 then you can add the code to your Child Theme style.css file, via Jetpack‘s Custom CSS module, or by using this Custom CSS plugin.
Hope this helps.
Forum: Fixing WordPress
In reply to: Change homepage product image sizeAs mentioned above, you can change the size of the actual theme images using a Child Theme, but as you’re using a commercial product you’ll need to seek assistance from where you purchased the from as we’re not supplied commercial products to be able to test with, as per the Forum Welcome.
Forum: Fixing WordPress
In reply to: Remove date and author/site name on bottom of each pagePlease try one of the methods we posted above.