Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I've build a wordpress template here at: http://mountsrepeats.co.uk
I've added some new pages off the 'Services' page so was wondering how I am supposed to have a dropdown appear when I hover over the services link on the navigation bar?
Is this a setting within WordPress or do I need to add some custom CSS to my stylesheet?
Thanks!
You'll need to use CSS and Javascript most likely. I know it can be done with pure CSS but Javascript tends to have better cross-browser compatability. Try looking into one of these plugins:
noupe
WebDesignDev
codecanyon - pure CSS (Costs $5)
CSS play - pure CSS
I'm not 100% familiar with WordPress, but you shouldn't need to mess with any settings on their end, just apply the code and go.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 7 days ago.
Improve this question
So... My pages were all done. Everything and every CSS running smoothly... And then I added my routes. Apparently my main route "/" managed to load every css file from my routes and now Im not sure what to do?
I looked it up and found some people talking about absolute pathing my styles. Didn't really work thou... Also tried to inspect and make sure nothing was overwriting my styles... I'm using reactjs. You guys have some tip for me?
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
This is not exactly a specific question, I am just looking for some advice really.
I know how to create websites using Bootstrap however I have just realized that WordPress has an awful lot of great plugins (contact page, ecommerce sites, blog plugins) that would come in very handy for the Bootstrap website I am trying to create.
I am wondering is it possible to integrate the 2 platforms together so I can keep my custom bootstrap layout and responsiveness but that I am able to incorporate some of the handy plugins that WordPress provides also.
Thanks
Colm.
I think yes, you can use any plugins with Bootstrap you want because if the plugin is not in the Bootstrap framework then it will have its own class and CSS for desktop and responsive mode so it will not conflict with Bootstrap hierarchy.
You can also overwrite the CSS if you want that will also help.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
Not sure if this is a stupid question or not,
but i want to create a better looking notes database which should remind users of our companys homepage.
Is it possible to use codes extracts of the wordpress themes css code?!
It might be easier to start with the Bootstrap4 XPages plugin on openNTF and then work to skin that.
As long as CSS stylesheets don't reference by element ID, it's possible to utilise elements. However, bear in mind that parts of the CSS stylesheets you're using may get overwritten by inline styles or stylesheets from the XPages runtime itself. In my experience, you will usually need to make some modifications to the stylesheets your using, but it's doable.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I use Wordpress.
I need to add in my post CSS and I didn`t find any plugins...
Have you tried inline style="background: #00ff00;"?
Or am I not understanding your questions correctly? You should be able to do inline styles by clicking the HTML tab when you create your post.
As I was feeling generous, I did a search for 'wordpress css in post' and got this result:
http://digwp.com/2010/02/custom-css-per-post/
Hope that helps.
What do you mean? If you want to manually style a post, you edit the stylesheet for your theme, usually located in wordpress/wp-content/themes/your-theme-name/. You can adjust that to your needs.
As for adding CSS inside a post, use the CodeHighlighter plugin. You enclose your CSS inside of a set of <pre lang="cpp"></pre> tags.
Good luck!
if you want blog post to be custom(add css to it), you will hardly find any plug-in, but if you plan to do it manually it is not difficult though you have to add css styles to page.php and single.php which are in your active wp theme folder.
see any sandbox theme for clear understanding , i use blueprint framework for wordpress which is easy to customize.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 4 years ago.
Improve this question
I want to buid a web page. The page contains a drop down which should look like this:
alt text http://img694.imageshack.us/img694/9350/dropdown.png
Is it possible using CSS or I would need to use a image with some javascipt?
You won't be able to style a select box like this. You have to make a custom one using JavaScript.
You can make using this jquery plugin
http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/
Yes it's possible without Javascript as long as the dropdown is to open automatically when you move the mouse over the button. "Son of suckerfish" is a popular drop-down menu implementation with only minimal added Javascript for older browsers, I have never used it for a standalone button but it should be easy to achieve.
A click-sensitive dropdown can't, to my knowledge, be done using pure CSS.
Edit: on second reading, I'm not sure what exactly you mean. Are you talking about the hand-drawn look of the button, or the behaviour of a dropdown button?
You would need to use a combination of CSS and javascript to create a custom select box. Unfortunately, elements aren't very stylable in most browsers.
EDIT
An example: http://lab.aspektas.com/select/select.html