Click here to Skip to main content
15,882,017 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: React iFrame, want to use it - suggest me if i have any better alternate for my below need Pin
jkirkerx7-Oct-19 13:50
professionaljkirkerx7-Oct-19 13:50 
GeneralRe: React iFrame, want to use it - suggest me if i have any better alternate for my below need Pin
simpledeveloper9-Oct-19 7:15
simpledeveloper9-Oct-19 7:15 
QuestionASP .NET Integrate With CISCO IP Phones Pin
Member 131052172-Oct-19 1:46
Member 131052172-Oct-19 1:46 
SuggestionRe: ASP .NET Integrate With CISCO IP Phones Pin
Richard MacCutchan2-Oct-19 2:00
mveRichard MacCutchan2-Oct-19 2:00 
AnswerRe: ASP .NET Integrate With CISCO IP Phones Pin
Nathan Minier7-Oct-19 1:29
professionalNathan Minier7-Oct-19 1:29 
QuestionMultiple PDF display in web application Pin
sundaramoorthy.b25-Sep-19 23:49
sundaramoorthy.b25-Sep-19 23:49 
GeneralRe: Multiple PDF display in web application Pin
Richard MacCutchan26-Sep-19 0:30
mveRichard MacCutchan26-Sep-19 0:30 
QuestionUnordered List Items are not displaying in horizontal Pin
simpledeveloper24-Sep-19 13:49
simpledeveloper24-Sep-19 13:49 
Hi all dears,

I have an unordered list, the items in the list are diaplyed vertical always, I am trying different approaches, but still not working, I set the inline style attribute display, to flex or inline but nothing works, can anybody please help me who has gone through the same issue anytime previously.
<pre>import React from 'react';
import { connect } from 'react-redux';
import '../css//bootstrap.css'
import xxxHeader from '../images/header/xxxclassic-ca.png'
import xxxClassicTwitter from '../images/header/xxxclassic-twitter.png'
import xxxx from '../images/header/xxxclassic-linkedin.png'
import CalxxxxInfo from '../images/header/xxxclassic-ytube.png'
import xxxxClassicEmail from '../images/header/xxxclassic-email.png'
import HeaderOrganization from '../images/header/header_organization.png'

const divStyle = {
    display: 'flex',
    alignItems: 'center'
};

const HeaderMenu = (props) => (
    <header>
        <div className="header-top-outer container-fluid" style={divStyle}>
            <div className="container">
                <ul className="header-top" style={divStyle}>
                    <li><a href='http://www.xxxx.xxx' target="_blank"><img src={xxxHeader} alt="California dot gov website" /></a></li>
                    <li><a href='https://twitter.com/xxxxResources' target="_blank"><img src={xxxClassicTwitter} alt="xxxx Resources Board Twitter" /></a></li>
                    <li className="header-top"><a href='https://www.youtube.com/user/calxxxxinfo' target="_blank"><img src={CalxxxxInfo} alt="xxxx Resources Board Youtube" /></a></li>
                    <li className="header-top"><a href='https://www.linkedin.com/company/california-xxxx-resources-board' target="_blank"><img src={xxxx} alt="xxxx Resources Board LinkedIn" /></a></li>
                    <li className="header-top"><a href='https://public.govdelivery.com/accounts/xxxx/subscriber/new?topic_id=listserv' target="_blank"><img src={xxxxClassicEmail} alt="xxxx Resources Board Email" /></a></li>
                </ul>
            </div>
        </div>
        <div className="container">
            <div className="header-bottom clearfix">
                <div className="float-left">
                    <a href="http://xxx.xxxx.xxx"><img src={HeaderOrganization} className="xxxx-logo" alt="California xxxx Resources Board Logo" /></a>
                </div>
                <nav>
                    <ul className="nav float-right" style={divStyle}>
                        <li className="nav-item"><a className="nav-link" href="https://ww2.xxx.xxxx.xxx/community-xxxx-quality-portal">Home</a></li>
                        <li className="nav-item"><a className="nav-link" href="about.html">About</a></li>
                        <li className="nav-item"><a className="nav-link active" href="index.html">Preview</a></li>
                        <li className="nav-item"><a className="nav-link" href="data.html">Access Data</a></li>
                        <li className="nav-item"><a className="nav-link" href="mailto:aqview@xxx.xxxx.xxx">Contact</a></li>
                    </ul>
                </nav>
            </div>
        </div>
    </header>
);

export default connect()(HeaderMenu);


Any help please
AnswerRe: Unordered List Items are not displaying in horizontal Pin
Richard Deeming25-Sep-19 2:42
mveRichard Deeming25-Sep-19 2:42 
GeneralRe: Unordered List Items are not displaying in horizontal Pin
simpledeveloper25-Sep-19 5:30
simpledeveloper25-Sep-19 5:30 
AnswerRe: Unordered List Items are not displaying in horizontal Pin
Anandkumar Prajapati27-Sep-19 22:52
professionalAnandkumar Prajapati27-Sep-19 22:52 
GeneralRe: Unordered List Items are not displaying in horizontal Pin
simpledeveloper30-Sep-19 12:14
simpledeveloper30-Sep-19 12:14 
QuestionConvert the following jQuery function into React or what shall I do to have same functionality Pin
simpledeveloper24-Sep-19 11:04
simpledeveloper24-Sep-19 11:04 
AnswerRe: Convert the following jQuery function into React or what shall I do to have same functionality Pin
jkirkerx24-Sep-19 11:30
professionaljkirkerx24-Sep-19 11:30 
GeneralRe: Convert the following jQuery function into React or what shall I do to have same functionality Pin
simpledeveloper24-Sep-19 14:06
simpledeveloper24-Sep-19 14:06 
QuestionImporting all images into React Inline component which is const Pin
simpledeveloper24-Sep-19 10:40
simpledeveloper24-Sep-19 10:40 
AnswerRe: Importing all images into React Inline component which is const Pin
jkirkerx24-Sep-19 11:41
professionaljkirkerx24-Sep-19 11:41 
GeneralRe: Importing all images into React Inline component which is const Pin
simpledeveloper24-Sep-19 19:44
simpledeveloper24-Sep-19 19:44 
GeneralRe: Importing all images into React Inline component which is const Pin
simpledeveloper24-Sep-19 13:51
simpledeveloper24-Sep-19 13:51 
GeneralRe: Importing all images into React Inline component which is const Pin
simpledeveloper2-Oct-19 8:06
simpledeveloper2-Oct-19 8:06 
GeneralRe: Importing all images into React Inline component which is const Pin
jkirkerx2-Oct-19 13:00
professionaljkirkerx2-Oct-19 13:00 
QuestionQuery value is passed correctly but does not return any results in the query API string Pin
hm918-Sep-19 4:27
hm918-Sep-19 4:27 
AnswerRe: Query value is passed correctly but does not return any results in the query API string Pin
Richard Deeming18-Sep-19 7:35
mveRichard Deeming18-Sep-19 7:35 
GeneralRe: Query value is passed correctly but does not return any results in the query API string Pin
hm918-Sep-19 9:02
hm918-Sep-19 9:02 
GeneralRe: Query value is passed correctly but does not return any results in the query API string Pin
jkirkerx18-Sep-19 12:26
professionaljkirkerx18-Sep-19 12:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.