dtrovwl75780 2014-08-23 03:39 采纳率: 0%
浏览 286

<div class =“headerFst”>这是什么?

I have been attempting to remove a repeating header on all of my webpages for customization purposes, but have been unsuccessful finding what is causing this header repeat. I came across this code in the header, and after researching it, I can not find what its purpose is. Could this be my culprit for the repeating patterns? If not, please point me to the right direction.

Thank you for viewing, and helping if possible.

  • 写回答

1条回答 默认 最新

  • doumou1864 2014-08-23 04:06
    关注

    look this should be comment but there is nothing wrong in the code, if your header is including in every page, than you should look for the php file, like index.php, and look for the include(), function, and check in which include function you are including this file like this

    include('file_name_for_this_header_file');

    lets say the name of the file is header, than include function should look like this include('header');

    commment out it this line like this

    // include('header'); and check if any thing changes,

    or you can check the include_once as well same way

    and remember its just a rough guess from my side.

    评论

报告相同问题?