Khalid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to text-shadow the Post’s Titles over the Slider??@ogclick
Very welcome! Glad it worked.
Forum: Fixing WordPress
In reply to: How to text-shadow the Post’s Titles over the Slider??@oglick Can you also tell me in which file you have put the above mentioned CSS code?
Forum: Fixing WordPress
In reply to: How to text-shadow the Post’s Titles over the Slider??Upon observing the HTML code of the page, I found that there is something called Endurance Page Cache. Turned out that Bluehost by default enables it so you might probably start to look for options to clear this cache through WP Admin or Bluehost Control Panel.
Forum: Fixing WordPress
In reply to: How to text-shadow the Post’s Titles over the Slider??This should work. “a” is just referencing to the anchor links, so it is your wish to keep it or not. But in case it is not working, it might be possible that you are using a cache plugin which might be causing your change to not reflect on the website. Try clearing the cache if you are using any such plugin.
Forum: Fixing WordPress
In reply to: How to text-shadow the Post’s Titles over the Slider??You can try with following rule:-
.banner-text .banner-text-title a{ text-shadow:#000 -1px -1px 2px; }Forum: Fixing WordPress
In reply to: function name javascript in pluginThere is no hard rule for following a naming convention but you can do it in two ways:-
- Using a prefix – such as
pluginname_subscribe()orpluginname_unsubscribe() - Using a JSON object to wrap the functions such as:
var pluginobj = {}; pluginobj.subscribe = function(){ // Code Here } pluginobj.unsubscribe = function(){ // Code Here }
- This reply was modified 7 years, 10 months ago by Khalid.
- Using a prefix – such as