Remove column on my Archives page
-
Hi,
On my Archives page there is a column that categorizes things ‘By Page’. I would like to remove this as it makes no sense having it there given the tabs at the top of my site.
Is there a CSS code for this?
Thanks
CandisThe blog I need help with is: (visible only to logged in users)
-
You could do it with the following:
.page-id-341 .article div:nth-child(2) { display:none; } .page-id-341 .article div { width:45%; }but it looks like your archives page is simply a regular page that you have created and title “Archives” (rather than one automatically generated by the WordPress software as is done for authors/categories/tags/months/etc.) you should just be able to edit the HTML or shortcodes you’ve used on that particular page.
-
.page-id-341 .article div:nth-child(2) {
display:none;
}.page-id-341 .article div {
width:45%;
} -
@leonakrystal, there is no reason to copy and paste answers from an existing entry in a thread. Thanks in advance.
-
- The topic ‘Remove column on my Archives page’ is closed to new replies.