|
|
#1 |
|
Junior Member
Join Date: Aug 2009
Posts: 24
Rep Power: 1 ![]() |
Please advise where in the css I can modify the way the buttons look in the steps pages (ie step 1, step 2 etc)
I am trying to modify the font-weight of buttons in the group: /* @group Typography */ in the css sheet when I modify the following code - I cannot see this change on the buttons (the buttons are not bold) a.button { font-weight:bold; } a.button:hover { font-weight: bold; Please advise. Thank you Joanna Running Deepsea 4.1.5 |
|
|
|
|
|
#2 |
|
Coder
Join Date: Mar 2006
Posts: 4,857
Rep Power: 118 ![]() ![]() ![]() |
One of the best free tools for working with CSS and html is the firefox browser with the firebug plug in. It allows you to select any element of a page and immediatly see the html and css associated with it. You can even edit it in real time, in memory, in the browser to see the changes before you actually edit the file.
__________________
Larry What I post here should be used only as a guide to point you in the right direction. If the code I post doesnt make any sense or work as posted then you should spend more time reading the various manuals and tutorials so it does make sense and you can tweak it to work. A sure fire way to get yourself in trouble is to implement changes you dont have an intimate understanding of. Im happy to help, but I am not here to teach you to code or create your site for you. |
|
|
|
|
|
#3 |
|
68 Evangelist & Developer
Join Date: Jan 2007
Location: Pennsylvania, USA
Posts: 1,725
Rep Power: 50 ![]() ![]() |
Your code isn't going to be called unless you ad something to the actual template. Those aren't defined as buttons in the html as buttons. they are input elements of type "submit".
If you want it to be a button then you'd have to define a class for it and attach it to the input element. <input class="my_button" type="submit" name="submit"> Then in your CSS, define your class .my_button ...
__________________
Mike-N-Tosh IndianaPC.org - A community website (v3.1.10 Developer - heavily modified) Sandbox (v3.1.10, v4.0.9, 4.1.5) Visit My blog for tips, tricks, tutorials, reviews for 68 Classifieds as well as my store with Templates, Mods & Docs Web Hosting | Web Design & Development | 68 Classifieds Customizations I am not a 68C employee, just a user and try to help out |
|
|
|
|
|
#4 |
|
68 Classifieds Staff
Join Date: Mar 2006
Location: Belmont, NC
Posts: 5,364
Rep Power: 125 ![]() |
This should already be defined in the style sheet:
Code:
#content .continue input {
border-color:#CCCCCC #999999 #999999 #CCCCCC;
border-style:double;
border-width:3px;
color:#333333;
float:right;
padding:0.25em;
}
__________________
Eric Barnes 68 Classifieds Developer Please do not send me a private message asking for support. Instead use these open forums or our ticket system. Customer Area | Issue Tracker | Documentation | 68C Mods | Submit a Ticket | 68 @ Twitter | My Modules |
|
|
|
| Bookmarks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| General formatting | budriddler | v4 Questions & Support | 1 | 12-12-2008 09:33 AM |
| <button> as Submit button | bowers01 | HTML, CSS, and Design Help | 1 | 09-27-2008 06:21 AM |
| Formatting Ads | webwitch | v4 Questions & Support | 1 | 10-29-2007 10:11 AM |
| 3.1.7 Formatting Fix - Help! | GPM55 | v3.1 Questions & Support | 0 | 09-22-2007 05:24 PM |