In 99% of cases a combination of the above the should let you adjust the layout as you require to fully integrate with your chosen theme I would think (make sure you test any changes you make on multiple devices ).
However, if you still feel the need to modify the templates themselves please refer to the templates documentation
There are several option you have if you want to do this (for your own sanity, I would suggest you use just one of them and stick to it for any changes you need to make now or in the future):
WPPizza ->Layout -> Custom CSS
. If your webserver permissions allow it, adding declarations into that field will create a file named wppizza.style.css. If writing permissions are missing, inline css will be generated instead. (ensure you are entering valid css)
/[absolute]/[path]/[to]/wp-content/themes/[my-child-theme]/wppizza/css/
wppizza.custom.css
in that directory (or copy it from wp-content/plugins/wppizza/templates/css/ to that directory)
WPPizza -> Layout -> Style -> Include CSS / Stylesheet
is still checked/enabled
Note: As it is possible (using the relevant shortcodes) to use different layouts for different pages (or indeed each category displays), the WPPizza frontend css used consists of more than one file.
Namely :
if you want to overwrite any or even all these completely:
/[absolute]/[path]/[to]/wp-content/themes/[my-child-theme]/wppizza/css/
(same as above)
[plugin-path]/wppizza/templates/css/[one of the files above]
to /[absolute]/[path]/[to]/wp-content/themes/[my-child-theme]/wppizza/css/[one of the files above]
WPPizza -> Layout -> Style -> Include CSS / Stylesheet
is still checked/enabled
although you could also use your main theme and create the above mentioned directory structure there, using a child theme is by far the better and recommended way to do this – see WordPress Child Themes)
]]>/[absolute]/[path]/[to]/wp-content/themes/[my-child-theme]/wppizza/css/
styles-admin-custom.css
in /[absolute]/[path]/[to]/wp-content/themes/[my-child-theme]/wppizza/css/
and add your declarations as required. This file file be read AFTER the main admin css.
styles-admin.css from wppizza/css
to /[absolute]/[path]/[to]/wp-content/themes/[my-child-theme]/wppizza/css/
and overwrite. If you do, only this file will be read. Any future amendments to the css of the plugin itself will not be read, so know what you are doing.
Again, you could also use your main theme and create the above mentioned directory structure there, but using a child theme is by far the better and recommended way to do this – see WordPress Child Themes)
]]>