Thimothe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: two issues – picture quality and a light letterThe issue with the w should be resolved by switching to another font. Your theme probably support this otherwise you’ll need to add
body { font-family: [SomeFont]; }to your style.css file.
Do a quick search for “Website font combinations” and you should get plenty of great ideas which will boost your design
Forum: Fixing WordPress
In reply to: two issues – picture quality and a light letterHi Blake,
WordPress compresses media images automatically to improve load speed and save bandwidth. In your case, it is not a good thing. What’s great is that you can change this behaviour by creating a child theme , creating a new function.php file in it and adding
add_filter('jpeg_quality', function($arg){return 100;});in it. You’ll then need to reupload your images and they will be crisp.
Let me know if you need more help.
Forum: Fixing WordPress
In reply to: Gravatar shows up with every postsHi evelien,
Can you post the link to your site so we can see the issue.
Do you still use your gravatar ? If not, what happens if you delete it ?
Have you tried contacting the developper about this issue ?
You could also consider using some custom css to change the display to none to hide the gravatar. It is not the best option but it is the fastest. The gravatar would still be loaded by the browser impacting the speed a bit but will not be displayed.
Let me know if you need more help.
Forum: Themes and Templates
In reply to: Remove Space Between Images in GalleryGreat, I’m glad it worked.
I just want to point out though that setting the height breaks some of the responsiveness of your theme. It shrinks your image in width but not height. Height should be set to auto.
Forum: Themes and Templates
In reply to: [Analytical Lite] Author Name appearing wrongEven if I can’t find a page with the post name anymore, I’ll still try to give you some hints.
If it is an issue with the theme, you’ll want to create a child theme, create a new functions.php file in the child theme anad edit the function which displays the meta data. To help you quickly find what you need, do a search in the file for meta or author or name.
It should use WP’s native function get_the_author() to return the author name.
Hope this helps.
Forum: Themes and Templates
In reply to: Remove Space Between Images in GalleryHi,
It appears that it is not with the CSS that you’ll be able to change this as there is no css margin/padding being applied to your gallery images. The answer lies in the <img width=”150″ height=”150″ …>.
Can you find an option to change the size of the image to make it bigger ?
Forum: Themes and Templates
In reply to: [Techozoic Fluid] Change the main menu text colourHi,
I don’t have access to that theme right now but here’s a great trick. Using Chrome, right click on your menu element and chose Inspect. It’ll bring you the Developer Tools which will let you change the CSS on the fly to figureout which property you need to modify in your custom css setting.
This tool is a real life saver when you want to understand what is going on with your site.
Best regards,
Tim
Forum: Themes and Templates
In reply to: [Tonic] Featured ImagesHi,
Have a look at the Post Thumbnails article in the codex. It’ll give you the instructions on how to accomplish this.
Make sure you create a Child theme before changing the functions.php file
Forum: Themes and Templates
In reply to: [Analytical Lite] Author Name appearing wrongHi,
try switching the “Display name publicly as” under Users > Profile.
Forum: Themes and Templates
In reply to: [Corpo] using textures on black ribbon headerHi,
It is possible to do this with CSS. You’ll want to play around with the css background property in your custom CSS. Look at background-image, background-repeat.
Forum: Themes and Templates
In reply to: Changing Font ColourHi,
I do understand that you are not concerned about future updates and respect that. Though, you still might want to have a look at creating child themes as it is really a good habbit and you’ll already know it for your next theme. It only takes 5 minutes to setup a child theme.
With your theme, there could be a place where you can put some custom css. There, you’ll be able to add
body { color: #000; }which will make all your text pure black. You might want to read about not using pure black text for readibility reasons.
For the white footer, try using this along with your custom css
.allinone { background: transparent; } .footer { background: transparent; border-top: none; }Hope this helps.
Forum: Themes and Templates
In reply to: [Customizr] Help with Logo & Slider1. Moving the logo
Try using Chrome’s Developer Tools (CTRL+SHIFT+I) to inspect your elements. You can also use Firebug to accomplish the same.You’ll be able to apply changes to your CSS on the fly to know which element’s padding/margin to modify to nudge your logo.
2. Trouble with slider
Can you provide screen shots of the issue ? However, it’ll be hard to help you without seeing it in action and having a peek on what is going on behind the scene.Good luck
Forum: Themes and Templates
In reply to: Line Breaks On A Short LeadWhat do you mean by “where specified” ?
Forum: Themes and Templates
In reply to: Edited Theme without a Child Theme…If you can recall which files you edited (or look at the modification date from a FTP software or file managing app provided by your host company), you’ll be able to download a copy of them, reinstall the theme and then make a file comparison to find what you changed. The use this to create a child theme.
Forum: Themes and Templates
In reply to: Display only 3 items from the loop and then "read more"Hi,
you could initiate a variable before the loop and increment it each time a post is added. Whenever you get over 3, have the style display:hidden added so the items will not be displayed.Then you’ll have to create a button after those elements to have the Read more which will activate a javascript function to change the display value to visible.
However, keep in mind that most search engine will not consider hidden text while indexing your page.
Let me know if you need more help.