<?xml version="1.0"?>
<rss version="2.0"><channel><title>Frontend Latest Topics</title><link>https://www.webdesignerforum.co.uk/forum/24-frontend/</link><description>Frontend Latest Topics</description><language>en</language><item><title>Same time duration prevents counter clockwise animation ?!</title><link>https://www.webdesignerforum.co.uk/topic/95562-same-time-duration-prevents-counter-clockwise-animation/</link><description><![CDATA[<p>
	Can anybody tell me why the animation will not reverse if the two time parameters are identical for both clockwise and counter-clockwise please ?
</p>

<p>
	specifically: animation: rotate 1.5s infinite linear;
</p>

<p>
	 
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="pln">    </span><span class="tag">&lt;div</span><span class="pln"> </span><span class="atn">class</span><span class="pun">=</span><span class="atv">"outer"</span><span class="tag">&gt;</span><span class="pln">
      </span><span class="tag">&lt;div</span><span class="pln"> </span><span class="atn">class</span><span class="pun">=</span><span class="atv">"inner"</span><span class="tag">&gt;</span><span class="pln">
      </span><span class="tag">&lt;/div&gt;</span><span class="pln">
    </span><span class="tag">&lt;/div&gt;</span></pre>

<pre class="ipsCode prettyprint lang-css prettyprinted"><span class="pun">.</span><span class="pln">outer </span><span class="pun">{</span><span class="pln">
  </span><span class="kwd">width</span><span class="pun">:</span><span class="pln"> </span><span class="lit">200px</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">height</span><span class="pun">:</span><span class="pln"> </span><span class="lit">200px</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">display</span><span class="pun">:</span><span class="pln"> inline-flex</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">justify-content</span><span class="pun">:</span><span class="pln"> center</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">align-items</span><span class="pun">:</span><span class="pln"> center</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">border-radius</span><span class="pun">:</span><span class="pln"> </span><span class="lit">700px</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">border</span><span class="pun">:</span><span class="pln"> </span><span class="lit">30px</span><span class="pln"> solid white</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">border-bottom</span><span class="pun">:</span><span class="pln"> </span><span class="lit">30px</span><span class="pln"> solid transparent</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">border-right</span><span class="pun">:</span><span class="pln"> </span><span class="lit">30px</span><span class="pln"> solid transparent</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">animation</span><span class="pun">:</span><span class="pln"> rotate </span><span class="lit">1.5s</span><span class="pln"> infinite linear</span><span class="pun">;</span><span class="pln">
</span><span class="pun">}</span><span class="pln">

</span><span class="pun">.</span><span class="pln">inner </span><span class="pun">{</span><span class="pln">
  </span><span class="kwd">width</span><span class="pun">:</span><span class="pln"> </span><span class="lit">100px</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">height</span><span class="pun">:</span><span class="pln"> </span><span class="lit">100px</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">display</span><span class="pun">:</span><span class="pln"> block</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">border-radius</span><span class="pun">:</span><span class="pln"> </span><span class="lit">700px</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">opacity</span><span class="pun">:</span><span class="pln"> </span><span class="lit">0.7</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">border</span><span class="pun">:</span><span class="pln"> </span><span class="lit">25px</span><span class="pln"> solid white</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">border-bottom</span><span class="pun">:</span><span class="pln"> </span><span class="lit">25px</span><span class="pln"> solid transparent</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">border-right</span><span class="pun">:</span><span class="pln"> </span><span class="lit">25px</span><span class="pln"> solid transparent</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">transform</span><span class="pun">:</span><span class="pln"> rotate</span><span class="pun">(-</span><span class="lit">0.50turn</span><span class="pun">);</span><span class="pln">
  </span><span class="kwd">animation</span><span class="pun">:</span><span class="pln"> rotate </span><span class="lit">0.5s</span><span class="pln"> infinite linear</span><span class="pun">;</span><span class="pln">
  </span><span class="kwd">animation-direction</span><span class="pun">:</span><span class="pln"> reverse</span><span class="pun">;</span><span class="pln">
</span><span class="pun">}</span><span class="pln">


</span><span class="pun">@</span><span class="pln">keyframes rotate </span><span class="pun">{</span><span class="pln">
  from </span><span class="pun">{</span><span class="pln">
    </span><span class="kwd">transform</span><span class="pun">:</span><span class="pln"> rotate</span><span class="pun">(</span><span class="lit">0deg</span><span class="pun">);</span><span class="pln">
  </span><span class="pun">}</span><span class="pln">
  to </span><span class="pun">{</span><span class="pln">
    </span><span class="kwd">transform</span><span class="pun">:</span><span class="pln"> rotate</span><span class="pun">(</span><span class="lit">360deg</span><span class="pun">);</span><span class="pln">
  </span><span class="pun">}</span><span class="pln">
</span><span class="pun">}</span></pre>

<p>
	I have to set them one second apart for the animation to work, otherwise the inner circle will just keep rotating clockwise ?!
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">95562</guid><pubDate>Tue, 13 Sep 2022 01:08:49 +0000</pubDate></item><item><title>Menu not working on mobile site</title><link>https://www.webdesignerforum.co.uk/topic/97771-menu-not-working-on-mobile-site/</link><description><![CDATA[<p>
	Hello  having problems  getting the menu working on www.eugenemdonaghy.co.uk   code pen is https://codepen.io/eugenemdonaghy/pen/JoRaYYO
</p>
]]></description><guid isPermaLink="false">97771</guid><pubDate>Sun, 26 Apr 2026 21:07:36 +0000</pubDate></item><item><title>mobile app design</title><link>https://www.webdesignerforum.co.uk/topic/97767-mobile-app-design/</link><description><![CDATA[<p style="background-color:#ffffff;color:#333333;font-size:16px;">
	Hi all, I tried google stitch, using same prompt used in this article<span> </span><a class="ipsType_noLinkStyling">nocode</a><span> </span>result is crazy.
</p>

<p style="background-color:#ffffff;color:#333333;font-size:16px;">
	searching other  tools like google stitch using prompt to have first version of mobile app design ?
</p>

<p style="background-color:#ffffff;color:#333333;font-size:16px;">
	the goal is just to have the template as html/css to start
</p>

<p style="background-color:#ffffff;color:#333333;font-size:16px;">
	thanks
</p>
]]></description><guid isPermaLink="false">97767</guid><pubDate>Tue, 21 Apr 2026 14:00:52 +0000</pubDate></item><item><title>force relative links to go to section header</title><link>https://www.webdesignerforum.co.uk/topic/97765-force-relative-links-to-go-to-section-header/</link><description><![CDATA[<p>
	Hello converted a bootstrap site to flex box  having a problem with relative links not jumping to section headers how can i force relative links to jump to section headers  code pen <a class="ipsType_noLinkStyling">https://codepen.io/eugenemdonaghy/pen/JoRaYYO</a>  
</p>

<p>
	link <a class="ipsType_noLinkStyling">https://www.eugenemdonaghy.co.uk/flex/links.html</a> to see what I mean and what I want
</p>
]]></description><guid isPermaLink="false">97765</guid><pubDate>Wed, 15 Apr 2026 22:15:18 +0000</pubDate></item><item><title>Footer not displaying correctly on mobile site</title><link>https://www.webdesignerforum.co.uk/topic/97763-footer-not-displaying-correctly-on-mobile-site/</link><description><![CDATA[<p>
	Hello working on my website www.eugenemdonaghy.co.uk trying to get my social media in the footer but unable to get all in the footer social media icons appear outside the footer on a mobile site
</p>

<p>
	have a codepen at <a class="ipsType_noLinkStyling">Untitled</a>
</p>

<p>
	 
</p>

<p>
	 
</p>

<p><a href="https://www.webdesignerforum.co.uk/uploads/monthly_2026_04/Screenshot_20260407_230736_SamsungBrowser.jpg.cd855e080b9d39e8fbda68ee8c969430.jpg" class="ipsAttachLink ipsAttachLink_image" ><img data-fileid="16759" src="https://www.webdesignerforum.co.uk/applications/core/interface/js/spacer.png" data-src="https://www.webdesignerforum.co.uk/uploads/monthly_2026_04/Screenshot_20260407_230736_SamsungBrowser.thumb.jpg.e607e77457747b567af402597dcb51c2.jpg" data-ratio="216.76" width="346" class="ipsImage ipsImage_thumbnailed" alt="Screenshot_20260407_230736_Samsung Browser.jpg"></a></p>]]></description><guid isPermaLink="false">97763</guid><pubDate>Wed, 08 Apr 2026 18:45:49 +0000</pubDate></item><item><title>Animated drop down box? Vertical carousel, tombola effect preview</title><link>https://www.webdesignerforum.co.uk/topic/97755-animated-drop-down-box-vertical-carousel-tombola-effect-preview/</link><description><![CDATA[<p>
	Morning all, 
</p>

<p>
	I'm creating a construction query website. And on the home page I want a drop down menu that contains all the trade category's but while it's inactive ( not clicked) I want it to constantly vertical carousel through all the different trades as a previous for what you can pick.
</p>

<p>
	Does anybody have any idea where to start. Doing a Google search I didn't really find any examples of one.
</p>

<p>
	I'm assuming this could be done with JavaScript and CSS. A plugin would be fine though.
</p>

<p>
	If I could create a tombola effect it would be awesome.
</p>

<p>
	 
</p>

<p>
	Kind regards
</p>

<p>
	 
</p>

<p>
	Tom 
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	 
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">97755</guid><pubDate>Wed, 18 Mar 2026 06:18:22 +0000</pubDate></item><item><title>can I send a link with data filter settings embedded?</title><link>https://www.webdesignerforum.co.uk/topic/97508-can-i-send-a-link-with-data-filter-settings-embedded/</link><description><![CDATA[<p>
	Hi all,
</p>

<p>
	 
</p>

<p>
	I'm a beginner - I adapted a portfolio <a class="ipsType_noLinkStyling">website for my film-making stuff</a>, so I only half know what I'm doing.
</p>

<p>
	I have a datafilter so you can sort my projects by various titles, like 'corporate' or 'music video' for example and see only those projects.
</p>

<p>
	Is there a way to send someone a link so that when the page loads it has a certain filter applied? Like if I'm going for a corporate job, can I send them a link that will open to the page with the filter set to showcase my corporate work? Currently it defaults to 'all'. I've tried anchor links, obviously that doesn't work.
</p>

<p>
	It's complicated by the fact that I simply added to existing code and it worked, but I don't really understand the underlying mechanism.
</p>

<p>
	This is the code that makes it run;
</p>

<p>
	Many Thanks for any help.
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="pln">  </span><span class="tag">&lt;div</span><span class="pln"> </span><span class="atn">class</span><span class="pun">=</span><span class="atv">"col-lg-12"</span><span class="tag">&gt;</span><span class="pln">
                   </span><span class="tag">&lt;ul</span><span class="pln"> </span><span class="atn">class</span><span class="pun">=</span><span class="atv">"portfolio__filter"</span><span class="tag">&gt;</span><span class="pln">
				  </span><span class="tag">&lt;li</span><span class="pln"> </span><span class="atn">class</span><span class="pun">=</span><span class="atv">"active"</span><span class="pln"> </span><span class="atn">data-filter</span><span class="pun">=</span><span class="atv">"*"</span><span class="tag">&gt;</span><span class="pln">All</span><span class="tag">&lt;/li&gt;</span><span class="pln">
				  </span><span class="tag">&lt;li</span><span class="pln"> </span><span class="atn">data-filter</span><span class="pun">=</span><span class="atv">".corporate"</span><span class="tag">&gt;</span><span class="pln">Corporate</span><span class="tag">&lt;/li&gt;</span><span class="pln">
				   </span><span class="tag">&lt;li</span><span class="pln"> </span><span class="atn">data-filter</span><span class="pun">=</span><span class="atv">".mvid"</span><span class="tag">&gt;</span><span class="pln">Music Video</span><span class="tag">&lt;/li&gt;</span><span class="pln">
				</span><span class="tag">&lt;li</span><span class="pln"> </span><span class="atn">data-filter</span><span class="pun">=</span><span class="atv">".director"</span><span class="tag">&gt;</span><span class="pln">Director</span><span class="tag">&lt;/li&gt;</span><span class="pln">
				</span><span class="tag">&lt;li</span><span class="pln"> </span><span class="atn">data-filter</span><span class="pun">=</span><span class="atv">".editor"</span><span class="tag">&gt;</span><span class="pln">Editor</span><span class="tag">&lt;/li&gt;</span><span class="pln">
				  </span><span class="tag">&lt;li</span><span class="pln"> </span><span class="atn">data-filter</span><span class="pun">=</span><span class="atv">".actor"</span><span class="tag">&gt;</span><span class="pln">Actor/Presenter/VO</span><span class="tag">&lt;/li&gt;</span><span class="pln">
				  </span><span class="tag">&lt;li</span><span class="pln"> </span><span class="atn">data-filter</span><span class="pun">=</span><span class="atv">".writer"</span><span class="tag">&gt;</span><span class="pln">Writer</span><span class="tag">&lt;/li&gt;</span><span class="pln">
				  </span><span class="tag">&lt;li</span><span class="pln"> </span><span class="atn">data-filter</span><span class="pun">=</span><span class="atv">".composer"</span><span class="tag">&gt;</span><span class="pln">Composer</span><span class="tag">&lt;/li&gt;</span><span class="pln">
					</span><span class="tag">&lt;li</span><span class="pln"> </span><span class="atn">data-filter</span><span class="pun">=</span><span class="atv">".vfx"</span><span class="tag">&gt;</span><span class="pln">VFX</span><span class="tag">&lt;/li&gt;</span><span class="pln">
				</span><span class="tag">&lt;/ul&gt;</span><span class="pln">
                </span><span class="tag">&lt;/div&gt;</span></pre>

<p>
	 
</p>
]]></description><guid isPermaLink="false">97508</guid><pubDate>Wed, 25 Sep 2024 04:46:02 +0000</pubDate></item><item><title>position: absolute ... but used for an entire website layout?</title><link>https://www.webdesignerforum.co.uk/topic/97516-position-absolute-but-used-for-an-entire-website-layout/</link><description><![CDATA[<p>
	I have never seen anything like this before.
</p>

<p>
	Every item is position on the page with top, bottom, left and or right. No floats, no flex...
</p>

<p>
	I had googled and it seems to be rare.
</p>

<p>
	Is this something that was done many years ago, does anyone have experience / opinions on this?
</p>
]]></description><guid isPermaLink="false">97516</guid><pubDate>Sat, 28 Sep 2024 14:26:21 +0000</pubDate></item><item><title>if i use a font in inkscape and use the svg path for one letter do i need a commercial license for that font</title><link>https://www.webdesignerforum.co.uk/topic/97628-if-i-use-a-font-in-inkscape-and-use-the-svg-path-for-one-letter-do-i-need-a-commercial-license-for-that-font/</link><description><![CDATA[<p>
	the title says it all, thanls.
</p>
]]></description><guid isPermaLink="false">97628</guid><pubDate>Wed, 04 Jun 2025 17:13:56 +0000</pubDate></item><item><title>Exploring Mobile App Development and Web Development &#x2013; What&#x2019;s the Best Path in 2025?</title><link>https://www.webdesignerforum.co.uk/topic/97641-exploring-mobile-app-development-and-web-development-%E2%80%93-what%E2%80%99s-the-best-path-in-2025/</link><description><![CDATA[<p>
	Hey everyone,
</p>

<p>
	I’ve recently started diving into both web development and mobile app development, and I’m curious about what others think is the smarter focus in today’s digital world.
</p>

<p>
	While web development offers a solid foundation for building websites and web applications, I’ve noticed <strong><a class="ipsType_noLinkStyling">mobile app development </a></strong>is becoming more essential as businesses shift toward mobile-first strategies. Whether it’s Android or iOS, almost every business today wants a dedicated app to boost engagement and provide better user experience.
</p>

<p>
	That said, I’d love to hear from experienced developers—Which one has better scope, growth, and freelance opportunities right now? Are there any specific frameworks or tech stacks you recommend for beginners in mobile app development?
</p>

<p>
	Let’s share some insights and help each other grow in this fast-moving industry.
</p>

<p>
	Looking forward to your thoughts!<br />
	 
</p>
]]></description><guid isPermaLink="false">97641</guid><pubDate>Thu, 10 Jul 2025 12:20:41 +0000</pubDate></item><item><title><![CDATA[<code> blocks]]></title><link>https://www.webdesignerforum.co.uk/topic/97625-blocks/</link><description><![CDATA[<p>
	I obviously spent too much time using Mattermost. To my shock the HTML inside
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="tag">&lt;code&gt;</span></pre>

<p>
	tags is rendered.
</p>

<p>
	Is there any nice script that get rids of rendering and adds proper indentation, or do all instructor websites really make their code blocks manually?<br />
	<br />
	Thanks for your help!
</p>
]]></description><guid isPermaLink="false">97625</guid><pubDate>Wed, 04 Jun 2025 04:56:17 +0000</pubDate></item><item><title>SVG - past, present and future.</title><link>https://www.webdesignerforum.co.uk/topic/97581-svg-past-present-and-future/</link><description><![CDATA[<p>
	Hello again everyone, I wanted to ask you your experiences with and opinions of SVG. Many say it is dead and W3C did not put as much work in as expected.<br />
	I would be interested in your opinions.<br />
	And if there are are links that you can share about the history of SVG / learning resources, I would be so grateful.
</p>
]]></description><guid isPermaLink="false">97581</guid><pubDate>Sun, 16 Feb 2025 08:10:13 +0000</pubDate></item><item><title>A question about accessibility - using an image as a link...</title><link>https://www.webdesignerforum.co.uk/topic/97518-a-question-about-accessibility-using-an-image-as-a-link/</link><description><![CDATA[<p>
	Hello everyone. I am using an image as a link and I want to make sure it is accessible.
</p>

<p>
	So I found <a class="ipsType_noLinkStyling">this</a> but in their example they have an onClick() event.
</p>

<p>
	My question is. Do I need 
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="pln">role="link"</span></pre>

<p>
	if I have this as my code?
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="pln">            </span><span class="tag">&lt;a</span><span class="pln"> </span><span class="atn">href</span><span class="pun">=</span><span class="atv">"#startseite"</span><span class="tag">&gt;</span><span class="pln">
              </span><span class="tag">&lt;img</span><span class="pln">
                </span><span class="atn">src</span><span class="pun">=</span><span class="atv">"img/startseite.svg"</span><span class="pln">
                </span><span class="atn">alt</span><span class="pun">=</span><span class="atv">"Startseite"</span><span class="pln">
                </span><span class="atn">title</span><span class="pun">=</span><span class="atv">"Startseite"</span><span class="pln">
              </span><span class="tag">/&gt;</span><span class="pln">
            </span><span class="tag">&lt;/a&gt;</span></pre>

<p>
	Many thanks for your help!
</p>
]]></description><guid isPermaLink="false">97518</guid><pubDate>Sun, 06 Oct 2024 18:30:50 +0000</pubDate></item><item><title>Tips for Improving Website Performance</title><link>https://www.webdesignerforum.co.uk/topic/97525-tips-for-improving-website-performance/</link><description><![CDATA[<p>
	Hi everyone,
</p>

<p>
	As a developer at <a class="ipsType_noLinkStyling">Gramosoft</a>, I've seen many websites struggle with performance issues. Here are a few tips that can help enhance loading speeds:
</p>

<ol>
	<li>
		<strong>Optimize Images</strong>: Use formats like JPEG for photos and compress them to reduce load times.
	</li>
	<li>
		<strong>Minimize HTTP Requests</strong>: Combine CSS and JavaScript files to decrease the number of requests.
	</li>
	<li>
		<strong>Enable Browser Caching</strong>: This stores resources for faster loading on return visits.
	</li>
</ol>

<p>
	Implementing these practices can lead to a noticeable improvement in user experience. What other strategies do you find effective?
</p>
]]></description><guid isPermaLink="false">97525</guid><pubDate>Mon, 21 Oct 2024 12:25:40 +0000</pubDate></item><item><title>How to get an image to overlay the parent div</title><link>https://www.webdesignerforum.co.uk/topic/97571-how-to-get-an-image-to-overlay-the-parent-div/</link><description><![CDATA[<p>
	Hello,<br />
	<br />
	I would like to create the below using a div container and then have the image coming out of it.<br />
	<br />
	I use bootstrap, so any assistance and help is appreciated.<br />
	<br />
	<img class="ipsImage ipsImage_thumbnailed" data-fileid="16711" data-ratio="31.85" width="810" alt="image.png.0d337174bad58b5de059f3733901bc9a.png" data-src="https://www.webdesignerforum.co.uk/uploads/monthly_2025_01/image.png.0d337174bad58b5de059f3733901bc9a.png" src="https://www.webdesignerforum.co.uk/applications/core/interface/js/spacer.png" />
</p>

<p>
	 
</p>

<p>
	Thanks
</p>
]]></description><guid isPermaLink="false">97571</guid><pubDate>Fri, 31 Jan 2025 15:19:22 +0000</pubDate></item><item><title>I am trying to find the right words to describe CSS properties...</title><link>https://www.webdesignerforum.co.uk/topic/97580-i-am-trying-to-find-the-right-words-to-describe-css-properties/</link><description><![CDATA[<p>
	<b>Hello everyone. I hope you are well.<br />
	<br />
	I am looking for particular words in CSS, here is the sentence I am writing.<br />
	<br />
	So if for a CSS animation, for the animation-timing-function property, one can use a ________ cubic Bézier easing function or a ________ such as ease-in.<br />
	(I would have saud CUSTOM and KEYWORD but I am really interesting in knowing what you all think.)<br />
	<br />
	What are the missing words, or if you rephrase the sentence entirely it is also OK.<br />
	<br />
	English is not my first language and I am a self-learner and these terms are difficult for me.<br />
	<br />
	Thanks in advance for your help.</b>
</p>
]]></description><guid isPermaLink="false">97580</guid><pubDate>Sun, 16 Feb 2025 08:02:06 +0000</pubDate></item><item><title>Highlight table TD / Column</title><link>https://www.webdesignerforum.co.uk/topic/97577-highlight-table-td-column/</link><description><![CDATA[<p>
	Hello,<br />
	<br />
	Using CSS and radio buttons is it possible to highlight multiple td's / column when one of the radio's is selected?<br />
	<br />
	<a class="ipsAttachLink ipsAttachLink_image" href="https://www.webdesignerforum.co.uk/uploads/monthly_2025_02/image.png.124af34314aef5644e4b099c4386363e.png" data-fileid="16714" data-fileext="png" rel=""><img class="ipsImage ipsImage_thumbnailed" data-fileid="16714" data-ratio="31.70" width="1000" alt="image.thumb.png.ba293dbbbc7b667d567deec0cc582ef9.png" data-src="https://www.webdesignerforum.co.uk/uploads/monthly_2025_02/image.thumb.png.ba293dbbbc7b667d567deec0cc582ef9.png" src="https://www.webdesignerforum.co.uk/applications/core/interface/js/spacer.png" /></a>
</p>

<p>
	 
</p>

<p>
	Thanks,
</p>

<p>
	Wayne
</p>
]]></description><guid isPermaLink="false">97577</guid><pubDate>Mon, 10 Feb 2025 08:32:02 +0000</pubDate></item><item><title>gradienty.codes &#x2013; A Designer&#x2019;s Tool for Effortless Gradients, Shapes and Glassmorphism</title><link>https://www.webdesignerforum.co.uk/topic/97521-gradientycodes-%E2%80%93-a-designer%E2%80%99s-tool-for-effortless-gradients-shapes-and-glassmorphism/</link><description><![CDATA[<p>
	<strong>Hello fellow designers!</strong>
</p>

<p>
	I wanted to take a moment to introduce you all to a project that’s been a true labor of love for me—<strong>Gradienty</strong>. As a designer myself, I’ve always been looking for ways to speed up my workflow, particularly when it comes to adding those little touches that really make a design pop, like <strong>gradients</strong> and <strong>frosted glass effects</strong>. I got tired of tweaking CSS endlessly just to get things looking the way I wanted, so I decided to build something that solves that for us.
</p>

<p>
	That’s where <strong><a class="ipsType_noLinkStyling">Gradienty</a> </strong>comes in.
</p>

<p>
	<strong>What is Gradienty?</strong><br />
	It’s a free web tool I created specifically for designers who use <strong>Tailwind CSS</strong> (but honestly, it works well for any CSS-based project). With just a few clicks, you can generate beautiful <strong>gradients</strong>, <strong>text gradients</strong>, <strong>glassmorphism effects</strong>, <strong>mesh gradients</strong>, and even <strong>custom blob shapes</strong>. No need to mess around with CSS code or worry about getting the right gradient stop. It’s fast, it’s easy, and it gives you copy-paste-ready CSS to drop into your projects.
</p>

<p>
	<strong>Why did I build this?</strong><br />
	Like most of you, I’m constantly juggling between client work, side projects, and just general experimentation. I wanted something that could take some of the repetitive work off my plate while still giving me full creative control. After launching the first version last year, the feedback I got from fellow designers really helped shape <strong>Gradienty V2</strong> into what it is now. Every feature in the tool has been added with real-world design needs in mind, based on what the community wanted.
</p>

<p>
	Here’s what you can do with Gradienty:
</p>

<ul>
	<li>
		<p>
			<strong>Generate Gradient Backgrounds</strong>: Create smooth, eye-catching backgrounds with multi-layered gradients. Choose your colors, adjust stops, and copy the code—simple as that.
		</p>
	</li>
	<li>
		<p>
			<strong>Text Gradients</strong>: Make your typography pop with stylish gradient text effects, perfect for making headers or callouts stand out.
		</p>
	</li>
	<li>
		<p>
			<strong>Gradient Box Shadows</strong>: Add depth to your design elements with subtle or bold gradient shadows to give your UI components that extra touch.
		</p>
	</li>
	<li>
		<p>
			<strong>Glassmorphism</strong>: Easily craft frosted glass effects that are perfect for modern UIs. With just a few tweaks, you can bring the trendy Glassmorphism style into your projects.
		</p>
	</li>
	<li>
		<p>
			<strong>Mesh Gradients</strong>: For more abstract designs, create fluid, multi-color gradients with our mesh generator—great for backgrounds or adding a modern, artistic vibe.
		</p>
	</li>
	<li>
		<p>
			<strong>Blob Generator</strong>: Fun, customizable blob shapes to use as design accents or background elements. You can adjust their size, form, and complexity to match your aesthetic.
		</p>
	</li>
</ul>

<p>
	I know there are tons of tools out there, but what makes <strong>Gradienty</strong> different is that it’s made by someone who <em>gets</em> the design process. I’ve kept everything free and completely open—no paywalls or hidden features—because I really believe in empowering fellow designers to create beautiful work without barriers.
</p>

<p>
	You can give it a try here: <strong><a class="ipsType_noLinkStyling">Gradienty.codes</a></strong>.
</p>

<p>
	I’d love to hear your thoughts, suggestions, or feedback. The tool is constantly evolving, and it’s really driven by what you, the design community, needs.
</p>

<p>
	Looking forward to seeing what you create!
</p>
]]></description><guid isPermaLink="false">97521</guid><pubDate>Tue, 15 Oct 2024 09:30:30 +0000</pubDate></item><item><title>Using an image as the background for a button 'back in the day'</title><link>https://www.webdesignerforum.co.uk/topic/97513-using-an-image-as-the-background-for-a-button-back-in-the-day/</link><description><![CDATA[<p>
	Hello everyone.
</p>

<p>
	I hope you are all great. It has been a minute since I posted. I need to do it more. I hope this topic is in the right place.
</p>

<p>
	I am doing a website for a restaurant and it has been many years since they had an upgrade.
</p>

<p>
	I found the attached as a background to their buttons.
</p>

<p>
	I think I remember doing this 'back in the day'.
</p>

<p>
	But can someone remind me why we did this? Was it because gradients had not been 'invented' yet, or was it to do with cross-border support?
</p>

<p>
	Thanks so much for your help.
</p>

<p><a href="https://www.webdesignerforum.co.uk/uploads/monthly_2024_09/bg.png.063f7abbbe105f63e134152da76f2375.png" class="ipsAttachLink ipsAttachLink_image" ><img data-fileid="16683" src="https://www.webdesignerforum.co.uk/applications/core/interface/js/spacer.png" data-src="https://www.webdesignerforum.co.uk/uploads/monthly_2024_09/bg.png.063f7abbbe105f63e134152da76f2375.png" data-ratio="57.94" width="214" class="ipsImage ipsImage_thumbnailed" alt="bg.png"></a></p>
<p><a href="https://www.webdesignerforum.co.uk/uploads/monthly_2024_09/Screenshot.png.3c3d6181f3bf3836d73702b18e1c13db.png" class="ipsAttachLink ipsAttachLink_image" ><img data-fileid="16684" src="https://www.webdesignerforum.co.uk/applications/core/interface/js/spacer.png" data-src="https://www.webdesignerforum.co.uk/uploads/monthly_2024_09/Screenshot.png.3c3d6181f3bf3836d73702b18e1c13db.png" data-ratio="53.36" width="476" class="ipsImage ipsImage_thumbnailed" alt="Screenshot.png"></a></p>]]></description><guid isPermaLink="false">97513</guid><pubDate>Sat, 28 Sep 2024 13:57:49 +0000</pubDate></item><item><title>CSS Import</title><link>https://www.webdesignerforum.co.uk/topic/97446-css-import/</link><description><![CDATA[<p>
	Hello I am redesigning my web site to include a style switcher plug in but when testing the import I cannot get the layout sorted
</p>

<p>
	 
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="pln">@import url ("assets/bootstrap/css/bootstrap.min.css");
@import url ("../assets/fonts/ionicons.min.css");
@import url ("Footer-Basic.css");
@import url ("Navigation-Clean.css");
@import url ("links.css");</span></pre>

<p>
	the css is stored in assets &gt; css directory  any idea on how to resolve?
</p>
]]></description><guid isPermaLink="false">97446</guid><pubDate>Fri, 21 Jun 2024 17:02:19 +0000</pubDate></item><item><title>UK Plate Builder Form for customers to 'generate car/bike number plate' for WP website</title><link>https://www.webdesignerforum.co.uk/topic/97466-uk-plate-builder-form-for-customers-to-generate-carbike-number-plate-for-wp-website/</link><description><![CDATA[<p>
	Hi,
</p>

<p>
	I have been working on a learning project to create a form that is similar to the Plate Builder form of <a class="ipsType_noLinkStyling">https://www.nationwidenumberplates.com/shop/builder</a>. I have been going around in circles and at my wits end. I did find some help here from a post in 2020 but the preview of the plate is somehow misplaced and not in position. This is the thread link of the topic way back in 2020 <a href="https://www.webdesignerforum.co.uk/topic/85497-number-plate-designer/" rel="">https://www.webdesignerforum.co.uk/topic/85497-number-plate-designer/</a>
</p>

<p>
	 
</p>

<p>
	Can someone please help me out. Much appreciated!!
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">97466</guid><pubDate>Fri, 02 Aug 2024 19:35:16 +0000</pubDate></item><item><title>Contact Form ! Help me....</title><link>https://www.webdesignerforum.co.uk/topic/92115-contact-form-help-me/</link><description><![CDATA[<p>
	Hello everyone , 
</p>

<p>
	i have a problem with my contact Form ....
</p>

<p>
	Ι fill in the fields of the contact form and click send.
</p>

<p>
	The mail goes normally but blank. Without any of the data I put in the fields.
</p>

<p>
	Look my Code.
</p>

<p>
	sendemail.php File
</p>

<p>
	&lt;?php<br />
	$name       = $_POST['name']; <br />
	$from       = $_POST['email']; <br />
	$subject    = $_POST['subject']; <br />
	$message    = $_POST['message']; <br />
	$to           = 'info@geapellas.gr';//replace with your email
</p>

<p>
	$headers   = array();<br />
	$headers[] = "MIME-Version: 1.0";<br />
	$headers[] = "Content-type: text/plain; charset=iso-8859-1";<br />
	$headers[] = "From: {$name} &lt;{$from}&gt;";
</p>

<p>
	mail($to, $subject, $message, $headers);
</p>

<p>
	die;
</p>

<p>
	 
</p>

<p>
	Html Contact index File
</p>

<p>
	                         &lt;form id="main-contact-form" name="contact-form" method="post" action="sendemail.php"&gt;<br />
	                               &lt;div class="form-group"&gt;<br />
	                                &lt;input type="text" placeholder="Όνομα" class="form-control" name="name" id="name"&gt;<br />
	                            &lt;/div&gt;<br />
	                            <br />
	                            &lt;div class="form-group"&gt;<br />
	                                &lt;input type="email" placeholder="Email" class="form-control" name="email" id="email"&gt;<br />
	                            &lt;/div&gt;<br />
	                            <br />
	                            &lt;div class="form-group"&gt;<br />
	                                &lt;input type="text" placeholder="Θέμα" class="form-control" name="subject" id="subject"&gt;<br />
	                            &lt;/div&gt;<br />
	                            <br />
	                            &lt;div class="form-group"&gt;<br />
	                                &lt;textarea rows="6" placeholder="Μήνυμα" class="form-control" name="message" id="message"&gt;&lt;/textarea&gt;    <br />
	                            &lt;/div&gt;<br />
	                                &lt;button type="submit" id="contact-submit" class="btn btn-primary"&gt;Αποστολή&lt;/button&gt;<br />
	                            &lt;/form&gt;
</p>

<p>
	Can someone find the problem please ?
</p>

<p>
	 
</p>

<p>
	Thanks 
</p>
]]></description><guid isPermaLink="false">92115</guid><pubDate>Thu, 14 Oct 2021 16:34:38 +0000</pubDate></item><item><title>Responsive Menu</title><link>https://www.webdesignerforum.co.uk/topic/97473-responsive-menu/</link><description><![CDATA[<p>
	Hello All,
</p>

<p>
	I have a problem with a hamburger menu displaying on a mobile device, everything is fine with the layout on a PC but on a mobile device, the whole menu displays &amp; not the small hamburger type, do I need to post the code or the website name please?
</p>

<p>
	Best wishes,
</p>

<p>
	Graeme
</p>
]]></description><guid isPermaLink="false">97473</guid><pubDate>Thu, 15 Aug 2024 18:45:55 +0000</pubDate></item><item><title>headroom.js not working properly with shadcn ui drawer on mobile (IOS)</title><link>https://www.webdesignerforum.co.uk/topic/97444-headroomjs-not-working-properly-with-shadcn-ui-drawer-on-mobile-ios/</link><description><![CDATA[<p>
	Having an issue with headroom.js and shadcn ui drawer on IOS.<br />
	<br />
	Scroll down the page and then open the mobile menu,<br />
	Click anywhere on the drawer/menu, the headroom header is moving/starting to unpin and I you can't click on a menu item <span><img alt=":(" data-emoticon="" height="20" src="https://www.webdesignerforum.co.uk/uploads/emoticons/default_sad.png" srcset="https://www.webdesignerforum.co.uk/uploads/emoticons/sad@2x.png 2x" title=":(" width="20" /><br />
	<br />
	I have tried to call freeze() on the headroom js library when mobile menu open but no luck.. (header stays open, but touch event bs still happens!)</span><br />
	Tried setting pointer events to none on the body no luck.. (touch event bs still happens!)<br />
	<br />
	Only thing I can think of doing it setting the scroll to 0 so the user is at the top of the page as it works then, but rather not!
</p>

<p>
	Any ideas guys? <span class="ipsEmoji">❤️</span> Will you buy a coffee or two!!! <br />
	<br />
	<a class="ipsType_noLinkStyling">Live link: https://rb.gy/k28esn</a>
</p>

<p>
	</p><video class="ipsEmbeddedVideo" controls="" data-video-embed="">
		<source type="video/mp4" data-video-src="https://www.webdesignerforum.co.uk/uploads/monthly_2024_06/RPReplay_Final1718880793.MP4.cc7bb7a3b64838cf29179169c5beca7d.MP4"> <a class="ipsType_noLinkStyling">RPReplay_Final1718880793.MP4</a>
	</source></video>

	<video class="ipsEmbeddedVideo" controls="" data-video-embed="">
		<source type="video/mp4" data-video-src="https://www.webdesignerforum.co.uk/uploads/monthly_2024_06/RPReplay_Final1718880793.MP4.cc7bb7a3b64838cf29179169c5beca7d.MP4"> <a class="ipsType_noLinkStyling">RPReplay_Final1718880793.MP4</a>
	</source></video>

	<video class="ipsEmbeddedVideo" controls="" data-video-embed="">
		<source type="video/mp4" data-video-src="https://www.webdesignerforum.co.uk/uploads/monthly_2024_06/RPReplay_Final1718880793.MP4.cc7bb7a3b64838cf29179169c5beca7d.MP4"> <a class="ipsType_noLinkStyling">RPReplay_Final1718880793.MP4</a>
	</source></video>


<video controls class="ipsEmbeddedVideo" data-fileid="16651" data-video-embed>
	<source data-video-src="https://www.webdesignerforum.co.uk/uploads/monthly_2024_06/RPReplay_Final1718880793.MP4.cc7bb7a3b64838cf29179169c5beca7d.MP4" type="video/mp4">
	<a class="ipsAttachLink" href="//www.webdesignerforum.co.uk/applications/core/interface/file/attachment.php?id=16651&amp;key=bb58162621ac041f13d626e74995fb35">RPReplay_Final1718880793.MP4</a>
</video>]]></description><guid isPermaLink="false">97444</guid><pubDate>Thu, 20 Jun 2024 11:15:06 +0000</pubDate></item><item><title>Very slow response times from nextjs due to using plaiceholder library</title><link>https://www.webdesignerforum.co.uk/topic/97428-very-slow-response-times-from-nextjs-due-to-using-plaiceholder-library/</link><description><![CDATA[<p>
	<a class="ipsType_noLinkStyling">https://stackoverflow.com/questions/78523813/blured-placeholder-images-ruining-my-performance-in-next-js-14<br />
	<br />
	I am building my first next js 14 website, its going well. However I am having trouble with slow speeds generating blur URLs for my images. Initial page load is like 4 seconds if there's a large gallery.<br />
	<br />
	This part of the code is taking quite a few seconds to process, so the page hangs for a while before loading in.</a><br />
	 
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="pln">if (data?.gallerySingle) {
  const gallerySingleUrl = urlFor(data.gallerySingle).url(); data.gallerySingle.blurDataURL = await getBase64Blur(gallerySingleUrl);
}</span></pre>

<p>
	<a class="ipsType_noLinkStyling"><br />
	What would be a better way to generate the blur URLs? Should I do it on the client side instead? Or can you see any issues with the code below?</a><br />
	 
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="pln">async function getPageData(slug: string) {
  const query = ` *[_type == "fleet" &amp;&amp; slug.current == '${slug}'] {
    "currentSlug": slug.current,
    title, mainImage, threedVideoUrl,
    "gallerySingle": gallerySingle.asset-&gt;{ _id, url, metadata { dimensions { width, height } } },
  ]}[0]`; 

  const data = await client.fetch(query); if (data?.gallerySingle) { const gallerySingleUrl = urlFor(data.gallerySingle).url(); 

  data.gallerySingle.blurDataURL = await getBase64Blur(gallerySingleUrl); } return data;
}</span></pre>

<p>
	<a class="ipsType_noLinkStyling"><br />
	Using: https://plaiceholder.co/ to generate the base64 blur data Thank you!</a>
</p>

<p>
	Anyone got any ideas on what I'm doing wrong haha. First time using next js!
</p>
]]></description><guid isPermaLink="false">97428</guid><pubDate>Fri, 24 May 2024 09:54:43 +0000</pubDate></item><item><title>Name Of Code</title><link>https://www.webdesignerforum.co.uk/topic/97416-name-of-code/</link><description><![CDATA[<p>
	Hello All,
</p>

<p>
	Would you be able to tell me the name of the attached please?  Thank you
</p>

<p><a href="https://www.webdesignerforum.co.uk/uploads/monthly_2024_04/Untitled-1.jpg.73a18170c4e48626587d4526c4f9123a.jpg" class="ipsAttachLink ipsAttachLink_image" ><img data-fileid="16645" src="https://www.webdesignerforum.co.uk/applications/core/interface/js/spacer.png" data-src="https://www.webdesignerforum.co.uk/uploads/monthly_2024_04/Untitled-1.jpg.73a18170c4e48626587d4526c4f9123a.jpg" data-ratio="80.87" width="622" class="ipsImage ipsImage_thumbnailed" alt="Untitled-1.jpg"></a></p>]]></description><guid isPermaLink="false">97416</guid><pubDate>Mon, 22 Apr 2024 17:24:28 +0000</pubDate></item><item><title>Drag n drop floorplanner</title><link>https://www.webdesignerforum.co.uk/topic/97167-drag-n-drop-floorplanner/</link><description><![CDATA[<p>
	<span style="background-color:#ffffff;color:#333333;font-size:15.008px;">Hi</span><br style="background-color:#ffffff;color:#333333;font-size:15.008px;" /><span style="background-color:#ffffff;color:#333333;font-size:15.008px;">We sell furniture online. We want the ability to allows customers to specify their floor dimensions and then drag/drop our sofas onto their floorplan to see how much space our sofas/tables take up.</span><br style="background-color:#ffffff;color:#333333;font-size:15.008px;" /><span style="background-color:#ffffff;color:#333333;font-size:15.008px;">I dont want anything complicated, just a rectangle that the user specifies the dimensions of, and can then drag up to 10 shapes (our range of sofas/tables) into the rectangle.</span><br style="background-color:#ffffff;color:#333333;font-size:15.008px;" /><span style="background-color:#ffffff;color:#333333;font-size:15.008px;">How can this be done? Has someone done similar before?</span><br style="background-color:#ffffff;color:#333333;font-size:15.008px;" /><span style="background-color:#ffffff;color:#333333;font-size:15.008px;">Thanks</span>
</p>
]]></description><guid isPermaLink="false">97167</guid><pubDate>Mon, 27 Mar 2023 06:22:19 +0000</pubDate></item><item><title>JS: Double- Or Singe Quotes Shouldn't Matter; But They Do</title><link>https://www.webdesignerforum.co.uk/topic/97162-js-double-or-singe-quotes-shouldnt-matter-but-they-do/</link><description><![CDATA[<p>
	Hello,
</p>

<p>
	I have just begun learning JS at W3 Schools.<br />
	At the <a class="ipsType_noLinkStyling">Introduction(</a><a class="ipsType_noLinkStyling">https://www.w3schools.com/js/js_intro.asp</a>), it is stated that JS is insensitive to the use of either single- or double quotes.<br />
	The Introduction states these two lines are the same:
</p>

<pre class="ipsCode prettyprint lang-javascript prettyprinted"><span class="pln">document</span><span class="pun">.</span><span class="pln">getElementById</span><span class="pun">(</span><span class="str">"demo"</span><span class="pun">).</span><span class="pln">innerHTML </span><span class="pun">=</span><span class="pln"> </span><span class="str">"Hello JavaScript"</span><span class="pun">;</span></pre>

<p>
	And:
</p>

<pre class="ipsCode prettyprint lang-javascript prettyprinted"><span class="pln">document</span><span class="pun">.</span><span class="pln">getElementById</span><span class="pun">(</span><span class="str">'demo'</span><span class="pun">).</span><span class="pln">innerHTML </span><span class="pun">=</span><span class="pln"> </span><span class="str">'Hello JavaScript'</span><span class="pun">;</span></pre>

<p>
	The first uses double quotes and the second singe quotes.<br />
	However, the exercise for changing the <em>src</em> of an image reveals a quote-sensitivity:
</p>

<pre class="ipsCode prettyprint lang-javascript prettyprinted"><span class="pun">&lt;</span><span class="pln">button onclick</span><span class="pun">=</span><span class="str">"document.getElementById('myImage').src='https://www.w3schools.com/js/pic_bulbon.gif' "</span><span class="pun">&gt;</span><span class="typ">On</span><span class="pun">&lt;/</span><span class="pln">button</span><span class="pun">&gt;</span><span class="pln">
</span><span class="pun">&lt;</span><span class="pln">img id</span><span class="pun">=</span><span class="str">"myImage"</span><span class="pln"> src</span><span class="pun">=</span><span class="str">"https://www.w3schools.com/js/pic_bulboff.gif"</span><span class="pln"> </span><span class="pun">/&gt;</span><span class="pln">
</span><span class="pun">&lt;</span><span class="pln">button onclick</span><span class="pun">=</span><span class="str">"document.getElementById('myImage').src='https://www.w3schools.com/js/pic_bulboff.gif' "</span><span class="pun">&gt;</span><span class="typ">Off</span><span class="pun">&lt;/</span><span class="pln">button</span><span class="pun">&gt;</span></pre>

<p>
	Here, <strong>getElementById(<span style="color:#c0392b;">'</span>myImage<span style="color:#c0392b;">'</span>)</strong> uses single quotes. This functions properly when ran; please see JSfiddle for example: <a class="ipsType_noLinkStyling">https://jsfiddle.net/d6kac84f/</a>
</p>

<p>
	However, in the following code I use double quotes to enclose <strong>myImage</strong>,<em> </em>yielding an apparent syntax error:
</p>

<pre class="ipsCode prettyprint lang-javascript prettyprinted"><span class="pun">&lt;!</span><span class="pln">DOCTYPE html</span><span class="pun">&gt;</span><span class="pln">
</span><span class="pun">&lt;</span><span class="pln">html</span><span class="pun">&gt;</span><span class="pln">
</span><span class="pun">&lt;</span><span class="pln">body</span><span class="pun">&gt;</span><span class="pln">
</span><span class="pun">&lt;</span><span class="pln">button onclick</span><span class="pun">=</span><span class="str">"document.getElementById("</span><span class="pln">myImage</span><span class="str">").src='https://www.w3schools.com/js/pic_bulbon.gif' "</span><span class="pun">&gt;</span><span class="typ">On</span><span class="pun">&lt;/</span><span class="pln">button</span><span class="pun">&gt;</span><span class="pln">
</span><span class="pun">&lt;</span><span class="pln">img id</span><span class="pun">=</span><span class="str">"myImage"</span><span class="pln"> src</span><span class="pun">=</span><span class="str">"https://www.w3schools.com/js/pic_bulboff.gif"</span><span class="pln"> </span><span class="pun">/&gt;</span><span class="pln">
</span><span class="pun">&lt;</span><span class="pln">button onclick</span><span class="pun">=</span><span class="str">"document.getElementById("</span><span class="pln">myImage</span><span class="str">").src='https://www.w3schools.com/js/pic_bulboff.gif' "</span><span class="pun">&gt;</span><span class="typ">Off</span><span class="pun">&lt;/</span><span class="pln">button</span><span class="pun">&gt;</span><span class="pln">
</span><span class="pun">&lt;/</span><span class="pln">body</span><span class="pun">&gt;</span><span class="pln">
</span><span class="pun">&lt;/</span><span class="pln">html</span><span class="pun">&gt;</span></pre>

<p>
	See JSfiddle: <a class="ipsType_noLinkStyling">https://jsfiddle.net/x42o7sgp/</a><br />
	The JSfiddle console states the following (as a neophyte to me yet unintelligible):
</p>

<blockquote class="ipsQuote" data-ipsquote="">
	<div class="ipsQuote_citation">
		Quote
	</div>

	<div class="ipsQuote_contents">
		<p>
			"&lt;a class='gotoLine' href='#39:129'&gt;39:129&lt;/a&gt; Uncaught SyntaxError: Unexpected end of input"<br />
			"&lt;a class='gotoLine' href='#41:130'&gt;41:130&lt;/a&gt; Uncaught SyntaxError: Unexpected end of input"
		</p>
	</div>
</blockquote>

<p>
	This is strange, because the above two codes  use singe- and double quotes without yielding a syntax error:
</p>

<p>
	document.getElementById(<strong>"demo")</strong>.innerHTML = "Hello JavaScript";<br />
	document.getElementById(<strong>'demo'</strong>).innerHTML = 'Hello JavaScript';
</p>

<p>
	It is as if the sensitivity suddenly lies within the parenthesis:
</p>

<p>
	&lt;button onclick="document.getElementById(<strong>'myImage'</strong>).src='https://www.w3schools.com/js/pic_bulbon.gif' "&gt;On&lt;/button&gt; <em>(This one works)</em><br />
	&lt;button onclick="document.getElementById(<strong>"myImage"</strong>).src='https://www.w3schools.com/js/pic_bulbon.gif' "&gt;On&lt;/button&gt; <em>(This one doesn't work)</em>
</p>

<p>
	 
</p>

<p>
	Thank you, should you be willing to point me in the right direction.
</p>

<p>
	<em>Architect</em>
</p>
]]></description><guid isPermaLink="false">97162</guid><pubDate>Sat, 25 Mar 2023 22:26:32 +0000</pubDate></item><item><title>Amateur Web Design Pricing</title><link>https://www.webdesignerforum.co.uk/topic/97112-amateur-web-design-pricing/</link><description><![CDATA[<p>
	I am 17 years old and I am currently working on redesigning the website of my employer. The olde website was made probably close to 10 years ago, so I completely starting from scratch and giving it a modern look. I have been programming for 5 years, and have done a little work with web design. So far I have created the home page, which my boss has said looks amazing and he wants me to continue. The company is a cell home repair company, meaning there will be multiple pages with pricing of repairs. I may be incorporating web scraping of our part supplier’s website in order to have the prices automatically update as the price of parts changes. My boss has said we will have a conversation about what I will be paid for this. I am wondering how much I should charge for a website like this? I have looked online and found a lot of pricing for professionally-made websites, but I am definitely not a professional. Despite this, I do think my website looks fairly professional and will be of value to the company. What do you think I should charge?
</p>
]]></description><guid isPermaLink="false">97112</guid><pubDate>Tue, 21 Mar 2023 19:12:39 +0000</pubDate></item><item><title>Li:Last-child a border-radius" Formatting not Accepted</title><link>https://www.webdesignerforum.co.uk/topic/96676-lilast-child-a-border-radius-formatting-not-accepted/</link><description><![CDATA[<p style="background-color:#ffffff;border:0px;color:#1c1c1c;font-size:14px;padding:0px 0px 0.25em;vertical-align:baseline;">
	Hello everyone,
</p>

<p style="background-color:#ffffff;border:0px;color:#1c1c1c;font-size:14px;padding:0.8em 0px 0.25em;vertical-align:baseline;">
	At<a class="ipsType_noLinkStyling"> 2:44:10</a><span> </span>of <a class="ipsType_noLinkStyling">Dave Gray's excellent CSS tutorial for beginners</a>, the intention is to make a hover effect have the same rounded corners as its container, so that they visually match.  My code seems identical to his, but I cannot attain the same effect.<span> </span><a class="ipsType_noLinkStyling">Here is my page</a> (JSFiddle). The<span> </span><em style="border:0px;font-size:inherit;padding:0px;vertical-align:baseline;"><strong style="border:0px;font-size:inherit;padding:0px;vertical-align:baseline;">li:last-child a{border-radius: 0 0 2rem 2rem;}</strong></em><span> </span>doesn't work yet does not seem erroneous. It is intended to make the last<span> </span><em style="border:0px;font-size:inherit;padding:0px;vertical-align:baseline;">li a:hover</em><span> </span>assume the same shape as the rounded bottom corners of the<span> </span><em style="border:0px;font-size:inherit;padding:0px;vertical-align:baseline;">nav element</em>, in which the<span> </span><em style="border:0px;font-size:inherit;padding:0px;vertical-align:baseline;">list anchors</em><span> </span>are nested.
</p>

<p style="background-color:#ffffff;border:0px;color:#1c1c1c;font-size:14px;padding:0.8em 0px 0.25em;vertical-align:baseline;">
	Can anyone point out to me where my code is not identical to his? I apologize; I really cannot see it.
</p>

<p style="background-color:#ffffff;border:0px;color:#1c1c1c;font-size:14px;padding:0.8em 0px 0.25em;vertical-align:baseline;">
	Kindly,
</p>

<p>
	<em>Architect</em>
</p>

<p>
	 
</p>

<p>
	<em>P.S.</em><br />
	The forum doesn't allow me to form a link to the YouTube video; I'll try to copy/pate it here directly rather than hyperlink a relevant piece of text in my message above: 
</p>

<p>
	<em>P.P.S.</em><br />
	Forum doesn't accept my link to JSFiddle either, so I'll try to copy/paste the link here rather than hyperlink the relevant text above: <a class="ipsType_noLinkStyling">https://jsfiddle.net/Architect0/28psknzc/7/</a>
</p>

<div class="ipsEmbeddedVideo">
	<div>
		<iframe allowfullscreen="" frameborder="0" height="113" src="https://www.youtube-nocookie.com/embed/n4R2E7O-Ngo?start=9850&amp;feature=oembed" title="CSS Full Course for Beginners | Complete All-in-One Tutorial | 11 Hours" width="200"></iframe>
	</div>
</div>

<p>
	 
</p>
]]></description><guid isPermaLink="false">96676</guid><pubDate>Thu, 09 Mar 2023 10:03:16 +0000</pubDate></item><item><title>Tag cloud not staying inside div</title><link>https://www.webdesignerforum.co.uk/topic/34786-tag-cloud-not-staying-inside-div/</link><description><![CDATA[
<p>Hey, I have a specific width set to a div I have (200px) and I'm using the standard wordpress tag cloud code (small to big font size tags) inside of it. Problem is the tags exceed with width of the div.</p>
<p> </p>
<p>Is there something you are supposed to do beyond standard practice? Perhaps a way to control the tag? </p>
<p> </p>
<p>This is the code</p>
<p></p>
<pre class="ipsCode">
&lt;div id="#footer-cloud"&gt;
  &lt;h2&gt;Popular tags&lt;/h2&gt;
  &lt;?php wp_tag_cloud('smallest=8&amp;largest=24&amp;'); ?&gt;
&lt;/div&gt;
</pre>
<div></div>
<p></p>
<p></p>
<pre class="ipsCode">
#footer-cloud {
width: 200px;
float: left;
}
</pre>
<div></div>
<p></p>
<p> </p>
<p>and it probably extends out an additional 200px in width. </p>
<p> </p>
<p>Any thoughts as to what I'm doing wrong here?</p>
]]></description><guid isPermaLink="false">34786</guid><pubDate>Fri, 23 Apr 2010 22:34:03 +0000</pubDate></item><item><title>Random thumbnail positions on hover of randomly positioned text</title><link>https://www.webdesignerforum.co.uk/topic/96428-random-thumbnail-positions-on-hover-of-randomly-positioned-text/</link><description><![CDATA[<p style="background-color:rgb(19,21,22);border:0px;color:rgb(218,215,210);font-size:15px;padding:0px;vertical-align:baseline;">
	I would like that when a user hovers different words, that a random arrangement of thumbnails fades-in.
</p>

<p style="background-color:rgb(19,21,22);border:0px;color:rgb(218,215,210);font-size:15px;padding:0px;vertical-align:baseline;">
	Some caveats:
</p>

<ul style="background-color:rgb(19,21,22);border:0px;color:rgb(218,215,210);font-size:15px;padding:0px;text-align:left;vertical-align:baseline;"><li style="border:0px;font-size:15px;padding:0px;vertical-align:baseline;">
		thumbs should stay fairly close to the corresponding text.
	</li>
	<li style="border:0px;font-size:15px;padding:0px;vertical-align:baseline;">
		thumbs can overlap, but not fully.
	</li>
	<li style="border:0px;font-size:15px;padding:0px;vertical-align:baseline;">
		both the text and the thumb positions should be random on every page refresh
	</li>
	<li style="border:0px;font-size:15px;padding:0px;vertical-align:baseline;">
		text and thumbs shouldn't fall outside the screen.
	</li>
	<li style="border:0px;font-size:15px;padding:0px;vertical-align:baseline;">
		should be scalable (i.e.. I will have max. 10 texts and max. 10 thumbs for every text. the thumbs could spread concentrically if need be)
	</li>
</ul><div>
	 
</div>

<div>
	And here's a fiddle of what I have so far: <a class="ipsType_noLinkStyling">https://jsfiddle.net/2jddfsjad/ewk4dzLp/9/</a>
</div>

<p style="background-color:rgb(19,21,22);border:0px;color:rgb(218,215,210);font-size:15px;padding:0px;vertical-align:baseline;">
	See the image for an example of what I mean:
</p>

<p><a href="https://www.webdesignerforum.co.uk/uploads/monthly_2023_01/C9NwSq54gt.png.309f6c7eec609b4fc683bb81670c7d1f.png" class="ipsAttachLink ipsAttachLink_image" ><img data-fileid="16553" src="https://www.webdesignerforum.co.uk/uploads/monthly_2023_01/C9NwSq54gt.thumb.png.cf30e47772001fcda5dd3c8ea145fd9a.png" data-ratio="23.4" width="1000" class="ipsImage ipsImage_thumbnailed" alt="C9NwSq54gt.png"></a></p>]]></description><guid isPermaLink="false">96428</guid><pubDate>Tue, 10 Jan 2023 10:27:50 +0000</pubDate></item><item><title>Adding an AI image generator to a website</title><link>https://www.webdesignerforum.co.uk/topic/96414-adding-an-ai-image-generator-to-a-website/</link><description><![CDATA[<p>
	Hi all,
</p>

<p>
	I'm new here, so please let me know if I have posted this in the wrong section.
</p>

<p>
	My query is as follows: I would like to embed / reformat an AI image generator onto a website for a new business I am launching.
</p>

<p>
	I haven't created my own AI image generator, but I am wondering whether it would be possible (and feasible for under $2500) to create a page on a website where an image generator is hosted / embedded and then the generated image is displayed on a different section of the page and emailed to me.
</p>

<p>
	The end goal would be similar to this: a user logs onto my website, can generate an image and we'll then sell them a photo print of said image.
</p>

<p>
	Would this be possible, would it be hugely out of budget, and what are your general thoughts?
</p>

<p>
	Thanks!
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">96414</guid><pubDate>Sun, 08 Jan 2023 12:53:08 +0000</pubDate></item><item><title>mirroring front end into low rez ASCII on sub-domain for curl requests ?</title><link>https://www.webdesignerforum.co.uk/topic/96344-mirroring-front-end-into-low-rez-ascii-on-sub-domain-for-curl-requests/</link><description><![CDATA[<p>
	A website like <span><a class="ipsType_noLinkStyling">http://wttr.in/</a> is optimised for low end GUI output like a curl request on the command line.</span>
</p>

<p>
	<span>However, is there a GitHub project anybody can recommend that will automatically mirror normal site content onto e.g. a sub-domain (to avoid maintaining two sites) in ASCII like format for curl access ?</span>
</p>
]]></description><guid isPermaLink="false">96344</guid><pubDate>Wed, 28 Dec 2022 04:12:19 +0000</pubDate></item><item><title>What is wrong with the javascript code?</title><link>https://www.webdesignerforum.co.uk/topic/95978-what-is-wrong-with-the-javascript-code/</link><description><![CDATA[<p>
	Im trying to get the menu open and close but it doesnt work. I did follow a tutorial on youtube..
</p>

<p>
	Im a beginner and not good at javascript..
</p>

<p>
	Here is the code for the whole site:
</p>

<p>
	&lt;!DOCTYPE html&gt;<br />
	&lt;html&gt;<br />
	&lt;head&gt;<br />
	&lt;title&gt;My site&lt;/title&gt;<br />
	&lt;meta charset="utf-8"&gt;<br />
	&lt;meta name="viewport" content="width=device-width, initial-scale=1"&gt;
</p>

<p>
	&lt;style&gt;
</p>

<p>
	* {<br />
	  box-sizing: border-box;<br />
	}
</p>

<p>
	.row::after {<br />
	  content: "";<br />
	  clear: both;<br />
	  display: table;<br />
	}
</p>

<p>
	<br />
	body {<br />
	   margin: 0px;<br />
	   padding: 0px;<br />
	   color: black;<br />
	   text-align: center;<br />
	   background-color: white;<br />
	   background-image: url('');<br />
	  background-repeat: no-repeat;<br />
	  background-attachment: fixed;<br />
	  background-size: cover;<br />
	  font-family: ;
</p>

<p>
	}
</p>

<p>
	h2 {<br />
	   font-size: 25px;<br />
	}
</p>

<p>
	p {<br />
	   font-size: 20px;<br />
	}
</p>

<p>
	.navbar {<br />
	  display: flex;<br />
	  justify-content:space-between;<br />
	  align-items: center;<br />
	  background-color: black;<br />
	  color: white;<br />
	}
</p>

<p>
	.brand-title {<br />
	  font-size: 1.5rem;<br />
	  margin: .5rem;<br />
	}
</p>

<p>
	.navbar-links ul {<br />
	  margin: 0;<br />
	  padding: 0;<br />
	  display: flex;<br />
	}
</p>

<p>
	.navbar-links li {<br />
	  list-style: none;<br />
	}
</p>

<p>
	.navbar-links li a {<br />
	  text-decoration: none;<br />
	  color: white;<br />
	  padding: 1rem;<br />
	  display: block;<br />
	}
</p>

<p>
	.navbar-links li:hover {<br />
	  background-color: #555;<br />
	}
</p>

<p>
	.toggle-button {<br />
	  position: absolute;<br />
	  top: .75rem;<br />
	  right: 1rem;<br />
	  display: none;<br />
	  flex-direction: column;<br />
	  justify-content: space-between;<br />
	  width: 30px;<br />
	  height: 21px;<br />
	}
</p>

<p>
	.toggle-button .bar {<br />
	  height: 3px;<br />
	  width: 100%;<br />
	  background-color: white;<br />
	  border-radius: 10px;<br />
	}
</p>

<p>
	@media (max-width: 700px) {<br />
	     .toggle-button {<br />
	          display: flex;<br />
	}
</p>

<p>
	.navbar-links {<br />
	   display: none;<br />
	   width: 100%;<br />
	}
</p>

<p>
	.navbar {<br />
	    flex-direction: column;<br />
	    align-items: flex-start;<br />
	}
</p>

<p>
	.navbar-links ul {<br />
	    width: 100%;<br />
	    flex-direction: column;<br />
	}
</p>

<p>
	.navbar-links li {<br />
	    text-align: center;<br />
	}<br />
	.navbar-links li a {<br />
	    padding: .5rem 1rem;<br />
	}
</p>

<p>
	.navbar-links.active {<br />
	    display: flex;<br />
	}
</p>

<p>
	<br />
	&lt;/style&gt;<br />
	&lt;/head&gt;
</p>

<p>
	&lt;body&gt;
</p>

<p>
	&lt;nav class="navbar"&gt;<br />
	&lt;div class="brand-title"&gt;Brand Name&lt;/div&gt;<br />
	&lt;a href="#" class="toggle-button"&gt;<br />
	  &lt;span class="bar"&gt;&lt;/span&gt;<br />
	  &lt;span class="bar"&gt;&lt;/span&gt;<br />
	  &lt;span class="bar"&gt;&lt;/span&gt;<br />
	&lt;/a&gt;<br />
	&lt;div class="navbar-links"&gt;<br />
	&lt;ul&gt;<br />
	  &lt;li&gt;&lt;a href="#news"&gt;Kontakt&lt;/a&gt;&lt;/li&gt;<br />
	  &lt;li&gt;&lt;a href="#contact"&gt;Nyheter&lt;/a&gt;&lt;/li&gt;<br />
	  &lt;li&gt;&lt;a href="#about"&gt;Om&lt;/a&gt;&lt;/li&gt;<br />
	&lt;/ul&gt;<br />
	&lt;/div&gt;<br />
	&lt;/nav&gt;
</p>

<p>
	&lt;script&gt;
</p>

<p>
	const toggleButton = document.getElementsByClassName(’.toggle-button')[0]<br />
	const navbarLinks = document.getElementsByClassName(’.navbar-links')[0]
</p>

<p>
	toggleButton.addEventListener('click', () =&gt; {<br />
	  navbarLinks.classlist.toggle('active)<br />
	})
</p>

<p>
	<br />
	&lt;/script&gt;
</p>

<p>
	 
</p>

<p>
	&lt;/body&gt;<br />
	&lt;/html&gt;
</p>

<p>
	 
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">95978</guid><pubDate>Thu, 10 Nov 2022 19:32:02 +0000</pubDate></item><item><title>Showcase my portfolio on different devices</title><link>https://www.webdesignerforum.co.uk/topic/95945-showcase-my-portfolio-on-different-devices/</link><description><![CDATA[<p>
	Hi everyone, 
</p>

<p>
	I am creating a portfolio section on my website and want to make a showcase with my website projects displayed on different screens.
</p>

<p>
	I have tried to download a transparent png of monitor and phone and then pasted in my screenshots of the site but it doesn't look as good as examples I find online. 
</p>

<p>
	Is there a tool/website that lets me put in an adress to my website and then it will show how it looks on different screens, which I can then download as an image? I have searched but not found anything. If not, how are you creating these nice showcases? 
</p>

<p>
	Ps. It doesn't really have to be different devices, just a monitor could be enough in this case. 
</p>
]]></description><guid isPermaLink="false">95945</guid><pubDate>Thu, 03 Nov 2022 12:10:30 +0000</pubDate></item><item><title>Store image and users email in an array and print to screen?</title><link>https://www.webdesignerforum.co.uk/topic/95927-store-image-and-users-email-in-an-array-and-print-to-screen/</link><description><![CDATA[<p>
	I have coded a small image gallery with a popup [of an image], but now I have to save the user choice of image(s) and email address and store both on screen. Moreover, I have been told to store the popup image(s) and the email in an array; I don't know how to add the popup image to an array.
</p>

<p>
	My codepen of the project.
</p>

<p>
	<a class="ipsType_noLinkStyling">https://codepen.io/aaron_1986/pen/VwdvqWB</a>
</p>

<p><a href="https://www.webdesignerforum.co.uk/uploads/monthly_2022_10/array.png.93abf630f668181771502e0d132cf55a.png" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="16513" src="https://www.webdesignerforum.co.uk/uploads/monthly_2022_10/array.thumb.png.6cacdb1ac9643dff92ada34d4266699e.png" data-ratio="49.2" width="1000" class="ipsImage ipsImage_thumbnailed" alt="array.png"></a></p>]]></description><guid isPermaLink="false">95927</guid><pubDate>Mon, 31 Oct 2022 17:05:33 +0000</pubDate></item><item><title><![CDATA[Website Layout & Functionality Issues]]></title><link>https://www.webdesignerforum.co.uk/topic/93029-website-layout-functionality-issues/</link><description><![CDATA[<p>
	<span style="background-color:#ffffff;color:#333333;font-size:15.008px;">Hi<span> <span class="ipsEmoji">😊</span></span></span><br style="background-color:#ffffff;color:#333333;font-size:15.008px;" /><span style="background-color:#ffffff;color:#333333;font-size:15.008px;">Is this a good place to start with asking for help with regards a responsive website template that I bought that isn’t really doing what I want with a gallery page specifically. I have a basic understanding of web design and have tweaked stuff within it to get what I want but I’ve been advised that there is a lot of unnecessary JS involved which isn’t helping especially if JS is disabled in a browser and that the general rule of building a site is to start with basic no JS and once it’s works as should, then JS is added as an enhancement to keep it SEO friendly.</span><br style="background-color:#ffffff;color:#333333;font-size:15.008px;" /><span style="background-color:#ffffff;color:#333333;font-size:15.008px;">I really like the layout and look of my site but I want it much less complicated and it’s so important to get the SEO compatibility right.</span><br style="background-color:#ffffff;color:#333333;font-size:15.008px;" /><span style="background-color:#ffffff;color:#333333;font-size:15.008px;">I’m hoping for some good advice and pointers to help me sort this out.</span><br style="background-color:#ffffff;color:#333333;font-size:15.008px;" /><span style="background-color:#ffffff;color:#333333;font-size:15.008px;">Sorry for the rambling<span> <span class="ipsEmoji">😩</span></span></span>
</p>
]]></description><guid isPermaLink="false">93029</guid><pubDate>Sun, 20 Mar 2022 11:58:47 +0000</pubDate></item><item><title>Vimeo Options and API</title><link>https://www.webdesignerforum.co.uk/topic/93298-vimeo-options-and-api/</link><description><![CDATA[<p>
	Hi there, 
</p>

<p>
	  I am trying to remove controls from vimeo videos. Adding &amp;controls=0 no longer seems to work. It seems this is achieved now by accessing the videos via api.
</p>

<p>
	I have no experiene with api's. I understand how to create an app in vimeo and generate the token, and add the following code to display the video's, but there's a chunk in the middle - I assume where the site retrieves the data from the api - that I am missing. 
</p>

<pre class="ipsCode prettyprint lang-html prettyprinted"><span class="tag">&lt;div</span><span class="pln"> </span><span class="atn">id</span><span class="pun">=</span><span class="atv">"made-in-ny"</span><span class="tag">&gt;&lt;/div&gt;</span><span class="pln">

</span><span class="tag">&lt;script</span><span class="pln"> </span><span class="atn">src</span><span class="pun">=</span><span class="atv">"https://player.vimeo.com/api/player.js"</span><span class="tag">&gt;&lt;/script&gt;</span><span class="pln">
</span><span class="tag">&lt;script&gt;</span><span class="pln">
    const options = {
        id: 59777392,
        width: 640,
        loop: true
    };

    const player = new Vimeo.Player('made-in-ny', options);</span></pre>

<p>
	Can you help?
</p>
]]></description><guid isPermaLink="false">93298</guid><pubDate>Sat, 07 May 2022 12:42:26 +0000</pubDate></item><item><title>Logo moves site content aside</title><link>https://www.webdesignerforum.co.uk/topic/94318-logo-moves-site-content-aside/</link><description><![CDATA[<p>
	Hi There,
</p>

<p>
	I have a php script (website), which is mobile ready and gives me this problem:
</p>

<p>
	When I upload my logo to the script, everything works correct on desktop resolution.
</p>

<p>
	 
</p>

<p>
	But visiting the website on mobile (or zooming in 170%+), results in the bug that the site content is being moved aside by the logo.
</p>

<p>
	 
</p>

<p>
	Please have a look at my uploaded image.
</p>

<p>
	 
</p>

<p>
	Do you have any idea how to resolve this?!
</p>

<p>
	 
</p>

<p>
	Thanks a lot,
</p>

<p>
	Andy
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://www.webdesignerforum.co.uk/uploads/monthly_2022_07/6.PNG.c914238e4ac68311b870991831e3a9dd.PNG" data-fileid="16423" data-fileext="PNG" rel=""><img alt="6.PNG" class="ipsImage ipsImage_thumbnailed" data-fileid="16423" data-ratio="55.36" width="784" src="https://www.webdesignerforum.co.uk/uploads/monthly_2022_07/6.PNG.c914238e4ac68311b870991831e3a9dd.PNG" /></a>
</p>
]]></description><guid isPermaLink="false">94318</guid><pubDate>Mon, 11 Jul 2022 11:28:25 +0000</pubDate></item><item><title>help with video resize outline issue</title><link>https://www.webdesignerforum.co.uk/topic/94052-help-with-video-resize-outline-issue/</link><description><![CDATA[<p>
	Hi!<br />
	 
</p>

<p>
	I've recently changed my website but I'm having a slight issue with the way video is displayed.  I've knocked this up myself, so please excuse my confident-idiot mistakes... <img alt=";)" data-emoticon="" height="20" src="https://www.webdesignerforum.co.uk/uploads/emoticons/default_wink.png" srcset="https://www.webdesignerforum.co.uk/uploads/emoticons/wink@2x.png 2x" title=";)" width="20" /><br /><br />
	I use looping videos on the site, and usually they work fine - except when I resize the browser window in Chrome I get a 1-pixel outline around the videos.  At full size it's fine, at minimum size it's fine, but inbetween these sizes the videos develop this 1-pixel outline in yellow (the background colour).  There's no such issue with images and I can't replicate the problem in Firefox.
</p>

<p>
	<br /><a class="ipsType_noLinkStyling">https://frankmansfield.co.uk/projects/ywt.php</a><br /><br />
	I've tried searching everywhere, but either I'm using the incorrect search terms (possible) or else I've made some schoolboy error (much more likely).<br /><br />
	Could anyone help me out with this?<br /><br />
	Cheers!!<br /><br />
	-f
</p>
]]></description><guid isPermaLink="false">94052</guid><pubDate>Mon, 27 Jun 2022 11:39:29 +0000</pubDate></item><item><title>jquery dialog - how to customize</title><link>https://www.webdesignerforum.co.uk/topic/93351-jquery-dialog-how-to-customize/</link><description><![CDATA[<p>
	The Missing manual says how much richer and better is Jquery than just js. Maybe, so I am trying it. Specifically I want to have a dialog box that displays on opening the page (achieved) and accepts and passes the single input string back to the calling line (failing). The js function "prompt" does exactly what I want except it is not pretty - but it is only one line. So my question is how to customize the dialog box, including changing the background, etc of the OK button and changing the text of the dialog box message depending on a condition? Thanks for any pointers you can give.
</p>
]]></description><guid isPermaLink="false">93351</guid><pubDate>Thu, 12 May 2022 17:36:21 +0000</pubDate></item><item><title>Show and hide div containing text when 2 buttons are click</title><link>https://www.webdesignerforum.co.uk/topic/93134-show-and-hide-div-containing-text-when-2-buttons-are-click/</link><description><![CDATA[<p>
	Hi everyone 
</p>

<p>
	 
</p>

<p>
	im trying to show and hide(toggle)  a div containing text  when 2 buttons are pressed.. e.g.
</p>

<p>
	 
</p>

<p>
	if your going on the london underground and you select a route going from victoria to bond street .. you click the button called victoria and then click the button called bond street, it needs to display a div which contains the full route on the webpage.. im asking if anyone knows how to do this as im really struggling with this soo much
</p>

<p>
	 
</p>

<p>
	regards
</p>

<p>
	 
</p>

<p>
	zed
</p>
]]></description><guid isPermaLink="false">93134</guid><pubDate>Tue, 12 Apr 2022 10:42:33 +0000</pubDate></item><item><title>Code for Responsive Header Image Using Media Query</title><link>https://www.webdesignerforum.co.uk/topic/93021-code-for-responsive-header-image-using-media-query/</link><description><![CDATA[<div>
	<p>
		I would like to create a full width header image that changes in size by <u>percentage</u> according to device. It is an incremental zooming-in-like effect upon one image instead of having to use separate ones of different pixel sizes.
	</p>

	<p>
		What is the best way to code this effect in CSS and HTML? Working in Dreamweaver, I have tried a number of approaches with no success. With the code below, a narrow strip (only) of the bottom of the image shows in DW the design view div. So the image path is correct. However, no image at all appears in the browser preview. Any help would be greatly appreciated.
	</p>

	<pre>
&lt;div class="header-image"&gt;      
    &lt;/div&gt;</pre>

	<p>
		 
	</p>

	<pre>.header-image {
        background-image: url("header-image.png");
<code><span><span>        background-size</span>: contain;</span></code>
        background-repeat: no-repeat;      
    } </pre>

	<p>
		 
	</p>

	<pre><code>@media only screen and (max-width: 992px) {
  .header {
    max-width: 125%;
  }
  
@media only screen and (max-width: 768px) {
  .header {
    max-width: 150%;
  }
}
  
@media only screen and (max-width: 567px) {
  .header {
    max-width: 200%;
  }
}
</code></pre>
</div>
]]></description><guid isPermaLink="false">93021</guid><pubDate>Sat, 19 Mar 2022 06:19:48 +0000</pubDate></item><item><title>2 questions - please be nice(!) - can't make Google Domains point to my Google Site and can't make a popup stick!</title><link>https://www.webdesignerforum.co.uk/topic/92899-2-questions-please-be-nice-cant-make-google-domains-point-to-my-google-site-and-cant-make-a-popup-stick/</link><description><![CDATA[<p>
	Dear Anyone.
</p>

<p>
	I've done a 5-page website which is called accessibilitypartners.co.uk., we're 2 disabled people who want to make work-life easier for other disabled people.  We've bought the name, we've built - after a nightmare learning curve - a PASSABLE website on Google Sites - still hugely learning! - and we've got a Google Domains.  Now here's what we THINK we know but you can correct us on any of it because if we were right, this would be working!<br /><br />
	These are probably-wrong thoughts, not statements!<br /><br />
	1.) Accessibilitypartner.co.uk is the DOMAIN NAME.  Domain names point to websites.
</p>

<p>
	2.) There's 3 kinds of website names, a CNAME which means Canonical Name and an MX name which is Mail Exchange and is where site E_mails go to. The third one is a mile-long mass of letters with your website name embedded in the middle of it all somewheres!
</p>

<p>
	3.)  Complete guess cos we can't work it out (and we're prob. getting something wrong in the above.) The Domain Name should be pointing to the mile-long mass of letters because that's the URL.  But there's 2 URLs, aren't there.  The mile-long mass of letters and a bunch of numbers separated by dots.  We think this is so because we've got both of the latter and they both take us to our site. <br /><br />
	Remember the above's just what we think we know at the moment and we're here cos nothing's working so we've obviously got it wrong somewhere!<br /><br />
	We tried typing the numbers separated by dots into the boxes on Google Domains because it seemed logical that that would be what it wanted to point to.  Didn't work. Tried the name of our website with CNAME on the end so we had WWW.accessibilitypartners.co.uk/cname (we tried lower case and capitals).  Didn't work. Tried the same again with /MX on the end instead - were getting desperate by now! - that didn't work.  Found a YouTube video that carefully detailed the whole process on GoDaddy, discovered Google Sites doesn't work the same way as GoDaddy! Couldn't find a YouTube (or anywhere else) vid. detailing the process on Google Sites.  (WE THINK we're WWW.  We're a bit lost as to whether we're WWW, HTTP or HTTPS.)<br /><br />
	Which is why we're here.  We are flat, totally, completely out of ideas.  We know more about next week's Lottery numbers (they're all between 1 and 50.  Fact!) Please, could someone use totally dumbed down idiot speak to tell us what the BLEEP we're doing wrong and what we should do?<br /><br />
	Just to make you laugh, I've achieved something that would be fairly impressive if only I knew how the heck I'd done it.  I use Firefox. When I do CTRL-T, as you know, I get an empty page full of ads. and links. I'm going to attach a screenshot of one of the links.  It looks like a Facebook link.  The address under it looks like a Facebook address. On my browser - not tried it on anybody else's! - clicking on it takes me to my site, not Fb! But typing in the addy under the link doesn't. <br /><br />
	Got zero idea about that either, but I'm attaching a screenshot anyway. 
</p>

<p><a href="https://www.webdesignerforum.co.uk/uploads/monthly_2022_02/1720812532_Unbelievablythislinkstomysite.jpg.ab2a76694afd7ace47be1c85b8548ba6.jpg" class="ipsAttachLink ipsAttachLink_image"><img data-fileid="16379" src="https://www.webdesignerforum.co.uk/uploads/monthly_2022_02/1720812532_Unbelievablythislinkstomysite.jpg.ab2a76694afd7ace47be1c85b8548ba6.jpg" data-ratio="132.95" width="176" class="ipsImage ipsImage_thumbnailed" alt="Unbelievably this links to my site.jpg"></a></p>]]></description><guid isPermaLink="false">92899</guid><pubDate>Thu, 24 Feb 2022 05:18:45 +0000</pubDate></item><item><title>Plz help: how do i use the Transport for london (API) for my wesite</title><link>https://www.webdesignerforum.co.uk/topic/92875-plz-help-how-do-i-use-the-transport-for-london-api-for-my-wesite/</link><description><![CDATA[<p>
	Hi Developers
</p>

<p>
	 
</p>

<p>
	im doing a university project on creating a clickable map based journey planner for the london underground trains... i was wondering if someone could make a step by step video on how i use the transport for london ( TFL) API and insert it in my program so that when 2 stations are clicked and they press the continue button data such as each stop the train makes on the chosen route, the duration of the journey, the colour of the lines the route takes etc to be displayed on the second page 
</p>

<p>
	the programs im using for my project are:
</p>

<p>
	 
</p>

<p>
	HTML
</p>

<p>
	CSS
</p>

<p>
	JavaScript/JQuery
</p>

<p>
	 
</p>

<p>
	kind regards
</p>

<p>
	 
</p>

<p>
	Zed
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">92875</guid><pubDate>Sat, 19 Feb 2022 20:17:33 +0000</pubDate></item><item><title>Site won't load from clicking google search results</title><link>https://www.webdesignerforum.co.uk/topic/92739-site-wont-load-from-clicking-google-search-results/</link><description><![CDATA[<p>
	The site is www.redmonwrecker.com , if you type that url in the browser, the site will load.
</p>

<p>
	However, if you google redmon wrecker, www.redmonwrecker. com is the first choice in the search results, but if you click that result, the site won't load.
</p>

<p>
	I"m not sure why this is, the url is the same in both the google search and typing it in the browser bar.
</p>

<p>
	Looking at whynopadlock.com it says the ssl cert is not installed correctly, though its odd that the site will load with ssl on some browsers but not all.
</p>

<p>
	Any suggestions are appreciated.
</p>

<p>
	 
</p>
]]></description><guid isPermaLink="false">92739</guid><pubDate>Sat, 29 Jan 2022 23:14:03 +0000</pubDate></item><item><title>hi please help me with wordpress</title><link>https://www.webdesignerforum.co.uk/topic/92594-hi-please-help-me-with-wordpress/</link><description><![CDATA[<p>
	hi i have built a site at <a class="ipsType_noLinkStyling">Taihape New Zealand - Adventure Central (mytaihape.com)</a> and have everything sorted but the widget footer 4 is larger than the rest of the footer links how do i reduce the size of the footer without wrecking my site. theme is next legit news 
</p>

<p>
	<a class="ipsAttachLink ipsAttachLink_image" href="https://www.webdesignerforum.co.uk/uploads/monthly_2022_01/Capture.PNG.f9eeb47d92403ce7b7cd263077b0899e.PNG" data-fileid="16365" data-fileext="PNG" rel=""><img alt="Capture.PNG" class="ipsImage ipsImage_thumbnailed" data-fileid="16365" data-ratio="46.6" width="1000" src="https://www.webdesignerforum.co.uk/uploads/monthly_2022_01/Capture.thumb.PNG.808730307ddf6bb035d6deced67c1813.PNG" /></a>
</p>
]]></description><guid isPermaLink="false">92594</guid><pubDate>Sat, 08 Jan 2022 09:33:44 +0000</pubDate></item><item><title>HTML, CSS</title><link>https://www.webdesignerforum.co.uk/topic/92103-html-css/</link><description><![CDATA[<p>
	Hi everyone. There is something I am trying to understand I've seen few websites all the content  is displayed in a single page,  for example  I go to the navbar and I click in one of the bottoms and  it takes me straight to a section in the body I mean after clicking automatically goes down the page and show the content of that bottom in the navbar, how that trick works?
</p>
]]></description><guid isPermaLink="false">92103</guid><pubDate>Tue, 12 Oct 2021 23:35:57 +0000</pubDate></item><item><title>Can someone please let me know what technology stack to use in order to build this type of website ?</title><link>https://www.webdesignerforum.co.uk/topic/92160-can-someone-please-let-me-know-what-technology-stack-to-use-in-order-to-build-this-type-of-website/</link><description><![CDATA[<p>
	<a class="ipsType_noLinkStyling">https://www.dentsu.com/</a>
</p>
]]></description><guid isPermaLink="false">92160</guid><pubDate>Sun, 24 Oct 2021 14:51:27 +0000</pubDate></item></channel></rss>
