How do express width in HTLM???
This is my guess from looking at google images (but it’s not working):
Just give a space between px and the value.
And see from debugging what value you expresion is giving
Thanks but that is not working:
Thanks but that is not working either:
Inspector (correct value):
But the actual shape is not receiving this width value:
In your expression your useing => / this will not return a value its a true fse statement, the width your shown is the another with
Can you dm me you editor view only access so i can better debug it.
If you want to use css learn the basics of it, use the developer tools to see what’s going on. When your css is not applied because of specificity you can still see the rule in the dev tools and see why is not applied to the element.
Please ignore that “=>” because that is just part of the option set name haha (i.e. not part of the actual expression (besides, the inspector is showing the correct value so please ignore the dynamic expression because its correct, i think it’s just the HTML/CSS or whatever that im screwing up
Your expression is returning a true false value, not a digit.
As i see from the image you share,
Hahahah , its always good idea to make name simple and easy so other developer dont get confused
I should clarify that I’m not a technical person and do not intend to learn programming i have built 99% of my app without needing to and i learn by asking questions every few months and solving only the problem i need to and then reapply that to other things i build. So i just need someone to show me how to express width properly them im all good for another 12 months haha
Did you put the css in script tag
Again, please assume i am stupid because i am. i don’t even know what CSS is. Just want someone to paste the solution here.
If we dont know something it doesn’t mean we are stupid, all of us went through this not knowing sensations.
Cheers G
I showed you exactly what you need to make it work. You don’t know the reason why it’s not working and I am pointing out the specific resource to understand why so that you can quickly apply this knowledge next time.
If you prefer a blind solution without understanding here you go:
<style>
#elementid {
width: 150px !important;
}
<\style>
@jessefarquhar48 i would love to debug this, if you can give me access. Having access to crime scene increases the chances of solving the crime
Style tags were missing than, i had a doubt.