Can't figure out how to fix these issues on my site

I know this is a long list but I’ve been trying to fix the small details for weeks and I’m not having any luck. Is there someone that can help me understand what I’m technically doing wrong?

  1. Muscle man icon deleted from header.
  2. On some devices the header blocks the logo.
  3. The font needs to be darker on my posts
  4. On the home page the featured article cards change sizes on different devices.
  5. Logo isn’t centered on some devices
  6. Some pictures don’t show up on my posts you only see the alt tag
  7. Some headlines on posts are cut off on mobile.
  8. If you look my contact page you’ll see text but when you go into my dashboard to edit the page the text isn’t there and this is keeping me from editing the page.
  9. In the about post I can’t get the images to be the same size and on mobile it’s even worse because I can’t get the captions under each image.

Hi Jamie,

Muscle man icon deleted from header.

Please remove the existing and try to upload it again

On some devices the header blocks the logo.

Your menu items does not fit on the allowed space for your menu. To fix this you need to remove some of your menu items.

https://theme.co/apex/forum/t/titles-not-working-correct/55627/2?u=paul.r

The font needs to be darker on my posts

To make it darker, you may add the code below in Theme Options > CSS

.single-post .entry-content,
.single-post .entry-content p {
     color:#000;
}

On the home page the featured article cards change sizes on different devices.

The cards size are based on it’s content. Unless they have exact same content, there size will always vary

Logo isn’t centered on some devices

Please remove the fixed width you added to your image element then set column to text align center.

Some pictures don’t show up on my posts you only see the alt tag

Try to reupload your images, if problem persist you cantry testing for plugin conflict

You can do this by deactivating all third party plugins, and seeing if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.

Some headlines on posts are cut off on mobile.

Can you provide us the url of the page where we can see the issue

If you look my contact page you’ll see text but when you go into my dashboard to edit the page the text isn’t there and this is keeping me from editing the page.

Please provide us the url of the page and your wordpress admin login in Secure Note so we can check on this.

In the about post I can’t get the images to be the same size and on mobile it’s even worse because I can’t get the captions under each image.

You need to remove the fixed width that you have added. Add min-width instead.

Add the code below in your image element’s css

$el {
  min-width:500px;  
}

I would suggest next time, please open separate tickets for each issue. This will allow us to focus on one issue and help others that are searching similar issue in the forum. This will also prevent us spending to much time on one ticket.

Thank you!

I will do separate tickets next time, thank you for your help.

No worries, Jamie. Cheers!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.