$conf, $runtime; function_exists('chdir') AND chdir(APP_PATH); $r = 'mysql' == $conf['cache']['type'] ? website_set('runtime', $runtime) : cache_set('runtime', $runtime); } function runtime_truncate() { global $conf; 'mysql' == $conf['cache']['type'] ? website_set('runtime', '') : cache_delete('runtime'); } register_shutdown_function('runtime_save'); ?>How do I remove headerpage-title image in farvis theme?|Programmer puzzle solving
最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

How do I remove headerpage-title image in farvis theme?

matteradmin11PV0评论
Closed. This question is off-topic. It is not currently accepting answers.

Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.

Closed 6 years ago.

Improve this question

I'm working with farvis theme. In that theme I removed background image in customize >> page titles & Breadcrumbs >> background image >> remove. But after I clicked save and reloaded the site another image is showing on screen in header image, I didn't find that image in Media Library.

Why this happening after removing header image in theme option. Tell me any additional CSS code to solve this problem.

Here is my screen shots. My desktop view If you can observe that image in between slider and menu there is an image. I want to remove that.

Here's the mobile view. Please tell me solution for this ASAP. Thank you.

Closed. This question is off-topic. It is not currently accepting answers.

Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be better asked at Stack Overflow or another appropriate Stack Exchange network site. Third-party plugins and themes are off-topic for this site; they are better asked about at their developers' support routes.

Closed 6 years ago.

Improve this question

I'm working with farvis theme. In that theme I removed background image in customize >> page titles & Breadcrumbs >> background image >> remove. But after I clicked save and reloaded the site another image is showing on screen in header image, I didn't find that image in Media Library.

Why this happening after removing header image in theme option. Tell me any additional CSS code to solve this problem.

Here is my screen shots. My desktop view If you can observe that image in between slider and menu there is an image. I want to remove that.

Here's the mobile view. Please tell me solution for this ASAP. Thank you.

Share Improve this question edited Dec 17, 2018 at 7:34 Anudeepsyamprasad asked Dec 17, 2018 at 7:27 AnudeepsyamprasadAnudeepsyamprasad 34 bronze badges 6
  • You can hide that image div using css like display:none; – Pratik Patel Commented Dec 17, 2018 at 7:30
  • When do I add this code? @PratikPatel – Anudeepsyamprasad Commented Dec 17, 2018 at 7:35
  • Please share full CSS code. – Anudeepsyamprasad Commented Dec 17, 2018 at 7:36
  • Please share your site link so i can create css as per div – Pratik Patel Commented Dec 17, 2018 at 7:40
  • odishahues ---> Here's my site link. – Anudeepsyamprasad Commented Dec 17, 2018 at 7:41
 |  Show 1 more comment

1 Answer 1

Reset to default 0

Put below CSS end of your theme style.css file

wp-content/themes/farvis/style.css

section.header-section {
background-image: none !important;
}

Please try and let me know if any query.

Updated

Post a comment

comment list (0)

  1. No comments so far