Dear All: I publish an html file using the worg.css from gist . In my html file there are some source code blocks, However, the table contents is blocked by the source code. I have *a screenshot of the insuee and worg.css * file in the attachment. Below is my publish setup and my init file. By the way, the problem occurs both using *C-c C-e *export and *M-x org-export *method. >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> *publish setup:* (require 'org-publish) (setq org-export-with-section-numbers nil) ;this set the section with no number. (setq org-publish-project-alist '( ;;first, the notes component ("org-notes" :base-directory "~/Documents/org/notes/" :base-extension "org" :publishing-directory "~/Documents/org/publish/" :recursive t :publishing-function org-html-publish-to-html :headline-levels 4 ; Just the default for this project. :auto-preamble t ; :htmlize-source t ;this set source-code highlighting in html publish :org-html-head-include-default-style nil ;set default html style to nil ) ;;second,the static component ("org-static" :base-directory "~/Documents/org/notes" :base-extension "css\\|js\\|png\\|jpg\\|gif\\|pdf\\|mp3\\|ogg\\|swf" :publishing-directory "~/Documents/org/publish/" :recursive t :publishing-function org-publish-attachment ) ;;third, the publish component ("org" :components ("org-notes" "org-static")) )) >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ***************************************************************************************************************************** *.emacs* (add-to-list 'load-path "~/.emacs.d/lisp") (require 'color-theme ) (color-theme-initialize) (color-theme-arjen) (put 'downcase-region 'disabled nil) ;;syntax highlighting ;;(setq org-src-fontify-natively t) ;;(require 'htmlize) ******************************************************************************************************************************