I have newest versions of Newspaper and WP. After running the plug-in I got these errors:
/wp-content/themes/Newspaper/includes/wp-booster/wp-admin/js/tagdiv-theme-plugins-setup.js: jQuery.fn.load() is deprecated
/wp-content/plugins/td-composer/assets/js/js_files_for_wp_admin.min.js: jQuery.fn.load() is deprecated
Save still spins indefinitely. Typically saves any revisions before clicking Savee.
Thank you the first option worked!
Interesting, I tried the custom css in Theme Panel > Custom Code https://prnt.sc/uf1huw but it only fixed the Safari web browser and not Chrome (I did not try Edge or Firefox).
Thank you. But can you clarify the basic difference between the two options? I am confused after updating Newspaper and using the Default Pro. I am having to rebuild my whole website after installing the demo.
Global settings – These options will be applied to all posts, and you can find them in the Theme Panel > Post Settings
– I SET THESE BUT THEY DO NOT WORK
Individual post settings (called Page Options) – you can apply them individually for each post. You will find these options under your post while editing.
– WHERE DID I MAKE THE CHOICE TO USE PAGE OPTIONS?
Ah. I see. I have never used that Edit Template before. Right click does not work for me to delete so I just clicked the trash can. Thank you!
Thank you. The location seems to be fixed. But, can you help with getting the top menu to go over the menu below it? I tried using z-index but the dropdowns from top menu still conflict with lower menu. https://prnt.sc/uellqh
Hi Sorry for a delayed response. I am trying to use a custom menu for mobile without using the mobile theme plug-in. You said we need to use the cloud template. I am currently using Newspaper Version 9.7.2 with default theme. Which cloud template would you suggest that looks similar to default theme?
Or, do I use a cloud library header template? Thank you.
-
This reply was modified 6 years by
chabotjeff.
OK thank you. As long as they don’t take up space it is no problem.
thank you Calin. I just had to choose the right header template.
Thank you Calin. I had a lot of problems with the mobile theme plug-in so I won’t be able to use your solution. I realize the plug-in was made for fast mobile viewing but it just doesn’t accomplish what I need. I wonder if in the future more flexibility will be integrated into the default mobile theme.
thank you that worked!
Hi. Here is an example page. Thank you.
https://hd-report.com/category/blu-ray-disc/
This might be solved. I used a clear method since block elements don’t seem to be acting like blocks.
<hr style=”clear:both;” />
pushes all content below hr. This can probably be used for divs, paragraphs, headers, or other block elements as well.
Hi yes this is still a problem. It works OK with other WordPress themes. Please see https://hd-report.com/pre-orders/4k-blu-ray/
Nevermind I found an easier way using nth-child in CSS. I pasted in Theme Panel > Custom Code > Custom CSS and works.
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
}
tr:nth-child(even) {background-color: #f2f2f2;}
</style>
I realize this must have something to do with the Amazon product code in brackets since plain text works OK with an <hr> as block items.
Yes but the way you described it would be pasted into every table used in a post or page, no?
Sorry. But are you suggesting inline styles? That is not a good solution. I need a site-wide solution. I don’t understand why CSS won’t work over the top of your theme? Can you explain?
Hi. I think there was a conflict with mobile plug-in. Once I disabled mobile plug-in the menu stays the same.
As far as the Sign-In button, I disabled in the Header > Top Bar and it removed from mobile. Thank you.
hd-report.com
Hi. An example page would be:
https://hd-report.com/amazon-fire-tv-channels/
I’m trying to make look like this:
https://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_table_striped&stacked=h
Here is the full reference to Bootstrap tables on W3Schools:
https://www.w3schools.com/bootstrap/bootstrap_tables.asp
I tried putting the styles above in style.css and in CSS option in Theme. The bootstrap.css CDNs are linked in both header.php and header-empty1.php
Hi thank you. I pasted the following script in that location but does not do anything. Any thoughts?
<script src=”https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js”></script>