Posts by ndvo • 288 points
10 posts
-
0
votes1
answer422
viewsA: Creating HTML elements via Javascript/Jquery
Why does this happen? When you search for the class of an element, you are returning all the elements that have that class, including the ones that you just paste. How to solve? I suggest you do…
-
1
votes3
answers1001
viewsA: (Python) Find words with total vowels being even
Regex is usually a very useful tool for this sort of thing. As there is already an answer that follows the structure of your code here goes one using only regex and considering only vowels and…
-
4
votes1
answer3245
viewsA: Pseudo elements ::after and ::before work on which input types
Pseudo elements ::after and ::before do not work on replaced element (definition). These elements are defined as those outside the scope of CSS, such as img, iframes, video, hr, br, embed and input.…
-
0
votes1
answer135
viewsA: DRUPAL: Difficulty Backup and restore
The problem is not related to the database, but to the file system. What happens is that the module is trying to change the folder permissions event_calendar_colors which is inside the Drupal public…
-
0
votes1
answer72
viewsA: How to fetch Phpmyadmin data to display on screen using Drupal 8?
If you created the table in the same database that Drupal uses, you can use db_query to fetch the content. Below is an example of a Static Query (static search). As you yourself created the table in…
-
0
votes2
answers251
viewsA: Apache Forbidden 403 at Elementary OS
Look in the file /etc/apache2/apache2.conf for a line that reads Require all denied Check that this command is being used for the directory where your site is. If it is, switch to Require all…
-
3
votes3
answers16389
viewsA: Hover effect on one element affect another
Just you use the hover in the definition of the element you want to reach in CSS. Think about hover as a pseudo attribute of the element. It actually serves to identify any element in the same way…
-
1
votes2
answers2189
viewsA: How to put link in photo caption?
Short answer: Alternative text does not allow links. Long answer: The alternative text should not be used to make subtitles. This is text used by browsers when the image is not available (this is…
-
0
votes1
answer31
viewsA: Update Drupal 6 CCK fields via another tool
I’m not absolutely sure if you want to allow some users to change only some specific nodes or fields in all nodes of a certain type. If the idea is to allow them to edit only certain nodes the…
-
4
votes1
answer540
viewsA: DRUPAL enable CLEAN URL
When you access the clean URL page, Drupal runs a test to see if you can use this option, taking into account the server settings. It is not interesting to change these options directly in the…