Solutions
-
junior's post in Issues with Google Custom Search - bottom border missing was marked as the answerif this is being pulled in from Google using their styles you should be able to override this by changing your code to:
.gsib_a { padding: 0 6px 0 !important; } -
junior's post in WP Error - unable to access dashboard was marked as the answerHave you recently upgraded WP to the 4.1 version?
There are similar threads on the WordPress support forum
https://wordpress.org/support/topic/fatal-error-after-41-upgrade
https://wordpress.org/support/topic/cant-login-to-site-after-41-update
perhaps try re-installing the WP at least the two files mentioned and see if you are still having the same issues
-
junior's post in Adding banners from CJ ? was marked as the answerAs BlueDreamer says CJ serve the images to you. be sure that you send the designer the right dimensions of each image etc as there is more than one banner that you can use from each affiliate
-
junior's post in Dropdown menu porblems and such was marked as the answerTry adding this to the CSS
ul li ul li { width: 100px; } and remove the width from the ul li:hover ul -
junior's post in Help with scrolling design was marked as the answerThe background is a fixed image of full width and then the content slides over the top of it.
Use an image that is big enough to fill the screen and then add the background-position: fixed; CSS element
This is a way to do it - http://davidwalsh.name/css-fixed-position-background-image
-
junior's post in Iframe and Video tag not working was marked as the answerSomething similar to this on Stack Overflow http://stackoverflow.com/questions/18513575/problems-embedding-youtube-video
The solution for that one is to add http;to the src link in the iframe.
as for the <video> tag version not sure about why this wouldn't be working
-
junior's post in Best way to add 2 images here was marked as the answerUsing the code from the download I have altered it to add the two image buttons in by separating the logo and the date into separate divs and floating them. This is just one way that it can be done.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>forumsite</title> <link href="forumcss.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="topfiller"> <div id="date"> <div class="logo"> <img src="images/logo.gif"width="488" height="62" border="0"/> </div> <div class="buttons"> <img src="images/b2.jpg" width="40" height="40" /> <img src="images/b1.jpg" width="40" height="40" /> </div> </div> </div> <div id="tagline">Tagline text</div> </body> </html> body { background-color: #FFF; font-family: Calibri, Arial, sans-serif; font-size: 100%; color: #444; margin: 0px; padding: 0px 0px 80px; min-width: 982px; } #topfiller { background-image: url(images/filler.jpg); background-repeat: repeat-x; } #date { background-image: url(images/month.png); background-repeat: no-repeat; background-position: right top; overflow: hidden; } .logo { float: left; } .buttons { padding-right: 150px; } .buttons img { float: right; margin: 5px; } #tagline { padding: 0px 0px 0px 48px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.3em; margin: -6px 0 36px 0; }