Hello,
I also need some assistance with this. Here is the website I am working on:
https://www.lethalamounts.com/dev
You can see that the slider is appearing above the logo on the left. I added the following code to my css stylesheet to reposition my wp-cycle slider to the right side of my header:
#rotator {
position: absolute;
width: 550px;
height: 120px;
margin-left: 475px;
margin-top: 7px;
padding: 0;
overflow: hidden;
}
Using Chrome’s developer tools, I am seeing that wp-cycle adds it’s own code to a separate stylesheet that is overwriting my #rotator code from above. The code that’s overwriting mine (therefore keeping it aligned left) is:
<style type=”text/css” media=”screen”>
#rotator {
position: relative;
width: 550px;
height: 150px;
margin: 0; padding: 0;
overflow: hidden;
}
</style>
Again, using Chrome’s developer tools, when I “uncheck” or “deselect” the default positioning code, mine takes over and wp-cycle is positioned to the right (the way I want it to look). I cannot, however, find the stylesheet that is overwriting my code! Has anyone else had this problem?? Do you know where wp-cycle adds that positioning code? I am using my ftp server to look through all the files and cannot find this code. If I can locate the file, I can just delete their code and the slider will position correctly and life will be grand. Help please!
Thanks.