
Robert Carter
- Total activity 60
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 31
Articles
Recent activity by Robert Carter Sort by recent activity-
Change the spacing between the results
Add a margin-bottom property in the following selector: .search-result { margin-bottom: 20px; }
Change the appearance of the results page heading
The heading on the search results page consists of the number of results returned for the search term. Example: 9 results for "serial number". Add the following selector if it's not already in the...
Change the appearance of the search text
Change or add text properties in the following selectors. Large search box: .search { font-size: 12px; font-family: Tahoma, Arial, sans-serif; } Small search box: .search-small { font-siz...
Change the background color of the search field
Change the background property in the following selectors. Large search box: .search input[type=search] { background: #999; } Small search box: .search-small input[type=search] { background...
Change the width or height of the search field
Change the width or height values in the following selectors. Large search box: .search input[type=search] { height: 50px; width: 90%; } Small search box: .search-small input[type=search] {...
Change the appearance of the Sign In link
Add or modify text properties in the following selector: .login { font-size: 14px; color: green; }
Hide the Submit a Request link
Modify the following selector: .submit-a-request { display:none; }
Change the appearance of the Submit a Request link
Add the following selector and add or modify text properties: .submit-a-request { font-size: 14px; color: green; }
Change the appearance of the selected language
Add the following selector and property: .language-selector .dropdown-toggle { color: green; }
Change the space above or below the header or footer
Change or add margin-bottom and margin-top properties in the following selectors. Header: .header { margin-bottom: 20px; } Footer: .footer { margin-top: 10px; }