Shadow Post title

Hi, watching my posts titles in the IIldy theme, i’d like to see the post title including a simple ‘drop shadow’ instead of the plain white color of the title . How/ where can I do that? Where can I insert the needed CSS code to accomplish this for every post?

I’d appreciate it.
Thanks!

Sorry if this was asked before …

~Thiemo

Hey there

I hope you are well today.

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Additional CSS

/add shadow to title/
#header .bottom-header h1 {
text-shadow: 2px 2px #585858;
}

Best Regards,
Support

Splendid!
Thanks for your swift response.

… uhmm:

Is this also possible for the menu items that ‘float’ on top of the featured image / theme in general?
Because sometimes when a featured image contains a white area, the menu items (white!) can’t be read!
Same goes for any other page.

a Drop shadow for the menu items could fix this …

Would love to hear from you.
Thanks!

~Thiemo

Hi,

Again, is this solution possible for the menu items as well and give them a drop shadow?
If so, please let me know / drop a code here? I’d appreciate it.

Thanks!
~Thiemo

Hey there,

Here’s the code that you need to achieve this.

I modified the code that was previously given for the header image.

So remove what was given, and use this instead.

/*add shadow to menu*/
#header .top-header .header-navigation, #header .bottom-header h1 {
text-shadow: 2px 2px #585858;
}

Best regards,
Support

Super! Looks good. Thank you for the update.

~Thiemo