mandresi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Links not highlighted or underlinedIt is very possible that some CSS is applied to the links and has removed their normal formatting. You can check that, from your browser inspector.
Forum: Developing with WordPress
In reply to: Add URL parameter to pull data from spreads sheetYes, it is possible to do that. However, you will need to do some custom programming.
Hi,
The customization may vary from theme to theme. The fact that you modify either a widget or the content of the pages/posts through the editor may also depend on various factors. Each theme has their own way of customization. However, the main content is generally always modified through the editor.
Some advanced customizations will also require you create a child theme and write some PHP code. For that, you will have to dig inside the code of the theme.
Forum: Fixing WordPress
In reply to: Modern gallery elements not working in mobile modeHi,
When I analyze the page, I can see two things:
- in mobile mode, the width of each thumbnail is not set in the CSS
- some style properties of the thumbnail such as their positions are directly inlined in the <figure> element. And in mobile mode all the thumbnails are positioned at the same place on the top of their gallery container.
Those styles may be defined through JavaScript or the PHP code of the plugin. Let’s first suppose that they are set through JavaScript. In this case you can try by defining a width through CSS and see if the problem is solved.
Concerning the “division by zero” warning though, it seems to be an error from the PHP code of the plugin. So it is necessary to have a look at the code in order to debug it and find the origin of the error.
Forum: Developing with WordPress
In reply to: Cannot change header size in register_sidebar functionHi,
Can you check in the chrome developer if the header has really been changed into <h4>. If it is the case, I think it is a CSS problem.
Forum: Developing with WordPress
In reply to: remove scroll to topHi, try using :
#ast-scroll-top { display: none !important; }