Posts by Caio Oliveira • 141 points
10 posts
-
4
votes1
answer2391
viewsQ: Background-color and transparent color text
need to apply a color: transparent in an element that has the background-color: #fff. I’ve tried applying one opacity: 0 but it applies to the whole element, including the background. my current…
-
0
votes1
answer148
viewsQ: Break For inside an IF
I’m breaking my head an hour and I can’t understand why this BREAK is not working inside my IF: var nextSlide = searchElement("#next-slide").addEventListener("click", function(){ var tabs =…
javascriptasked Caio Oliveira 141 -
0
votes3
answers568
viewsQ: Scroll bar in a SELECT in html
Talk to you guys, I have a SELECT in my HTML that when the results exceed the width limit, it breaks a line. I would like instead of breaking this line, to be added a scroll bar. Explanatory image:…
-
0
votes1
answer53
viewsQ: I installed Bower, Gulp but don’t know which file to edit
I bought a theme from the internet called FUSE ANGULAR JS, in documentation from him, he explains that I must install npm, Bower, Gulp and so on... then he asks me to execute the following command…
-
0
votes1
answer463
viewsQ: Redirect via COOKIE
Hello ! My client needs the user to be redirected to the page he was accessing before ending the previous session. For example: User Accessed -> Page A (CREATED COOKIE) User logged out. When the…
-
1
votes1
answer904
viewsA: Grab the image of a Wordpress post from an external file
I found how to do it using class WP_Query and the function the_post_thumbnail: <ul> <?php define( 'WP_USE_THEMES', false ); include('esenergy/wp-load.php'); // Blog path function…
-
4
votes1
answer904
viewsQ: Grab the image of a Wordpress post from an external file
I have the titles of my last posts, but I also need to search and display the images along with the title. This is a file outside the Wordpress folder, a static page I made in HTML and CSS: <?php…
-
0
votes1
answer1224
viewsQ: How to display Wordpress "recent posts" on an external html page
I made a site using HTML & CSS and created the blog in CMS Wordpress. I have no experience with programming and now I need to search the database the last 3 recent blog posts I created. Does…
-
1
votes2
answers519
viewsA: Placeholder does not appear after applying "padding" to input
Based on the @Acco response, through the comments : .caio-input { height: inherit; } The bootstrap has a height: 34px; internally, which is "holding" the padding. In principle, the height: inherit;…
-
1
votes2
answers519
viewsQ: Placeholder does not appear after applying "padding" to input
Hello, I have a very silly and simple problem that is making me waste a P#@& time! come on.. I’m using the Bootstrap v3.3.6 CLASS="form-control" In case someone wants to make an inspection on…